blob: 98633580a6e4a2a1d0e1b19ebee5f89a26a0325e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright 2013-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="8"
DESCRIPTION="Handwriting model data of Japanese"
HOMEPAGE="https://tegaki.github.io/"
SRC_URI="https://github.com/tegaki/tegaki/releases/download/v${PV}/${P}.zip"
LICENSE="LGPL-2.1+"
SLOT="0"
KEYWORDS="amd64 ~arm64 ~ppc64 x86"
IUSE=""
RDEPEND=""
BDEPEND="app-arch/unzip"
src_prepare() {
default
sed -i \
-e "/^installpath=/s|local/||" \
-e "/^installpath=/s|=|=${EPREFIX}|" \
-e "s/\(\$(inst\)/\$(DESTDIR)\1/" \
Makefile
}
src_compile() {
:
}
|