blob: 297eb3d825abcb00b7850033e8d2c4674ff625a2 (
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
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit font
MY_PN="ae_fonts"
S="${WORKDIR}"/${MY_PN}_${PV}
DESCRIPTION="Arabeyes Arabic TrueType fonts"
HOMEPAGE="https://www.arabeyes.org/Khotot#2.0"
SRC_URI="mirror://sourceforge/arabeyes/${MY_PN}_${PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 arm ia64 ppc s390 sh sparc x86"
FONT_SUFFIX="ttf"
DOCS="README ChangeLog"
src_install() {
local d
for d in AAHS AGA FS Kasr MCS Shmookh; do
FONT_S="${S}"/$d
font_src_install
done
}
|