wok view ttf-roboto/receipt @ rev 20993

gpicview: modified TARBALL
author Hans-G?nter Theisgen
date Thu Mar 07 17:13:01 2019 +0100 (2019-03-07)
parents d1570adae0ba
children
line source
1 # SliTaz package receipt.
3 PACKAGE="ttf-roboto"
4 VERSION="1.2"
5 CATEGORY="fonts"
6 SHORT_DESC="Android Roboto Fonts"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="Apache"
9 WEB_SITE="https://developer.android.com/design/style/typography.html"
10 WANTED="ttf-roboto-base"
11 DEPENDS="ttf-roboto-base"
12 TAGS="font ttf"
14 # Rules to gen a SliTaz package suitable for Tazpkg.
15 genpkg_rules()
16 {
17 FONTPATH=$fs/usr/share/fonts/truetype/ttf-roboto
18 mkdir -p $FONTPATH
20 for FILE in $src/Roboto_v$VERSION/Roboto/*.ttf \
21 $src/Roboto_v$VERSION/RobotoCondensed/*.ttf; do
22 install -Dm444 $FILE $FONTPATH
23 done
24 # these files are included in the package ttf-roboto-base
25 for FONT in Regular Bold Italic BoldItalic; do
26 rm -f $FONTPATH/Roboto-$FONT.ttf
27 done
28 }