wok view ttf-roboto/receipt @ rev 15666

Add ddumbfs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Dec 13 16:18:29 2013 +0000 (2013-12-13)
parents 8641da148c78
children abb8eb9a3350
line source
1 # SliTaz package receipt.
3 PACKAGE="ttf-roboto"
4 VERSION="20120823"
5 CATEGORY="x-window"
6 SHORT_DESC="Android Roboto Fonts"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="Apache"
9 WEB_SITE="http://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/*.ttf; do
21 install -Dm444 $FILE $FONTPATH
22 done
23 # these files are included in the package ttf-roboto-base
24 for FONT in Regular Bold Italic BoldItalic; do
25 rm -f $FONTPATH/Roboto-$FONT.ttf
26 done
27 }