wok view otf-gfs/receipt @ rev 22247

updated xorg-xauth (1.0.7 -> 1.1)
author Hans-G?nter Theisgen
date Tue Nov 12 16:18:33 2019 +0100 (2019-11-12)
parents 20661c276bcf
children fe66b54207f7
line source
1 # SliTaz package receipt.
3 PACKAGE="otf-gfs"
4 VERSION="20100912"
5 CATEGORY="fonts"
6 SHORT_DESC="Selection of open type fonts from the Greek Font Society"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="SIL_OFL"
9 WEB_SITE="https://www.greekfontsociety-gfs.gr"
10 TAGS="font otf"
11 EXTRA_SOURCE_FILES="GFS_DIDOT_OT.zip GFS_BODONI_OT.zip GFS_OLGA_OT.zip \
12 GFS_NEOHELLENIC_OT.zip GFS_ARTEMISIA_OT.zip GFS_THEOKRITOS_OT.zip \
13 GFS_PYRSOS.zip GFS_DIDOTCLASS_OT.zip GFS_Porson_OT.zip GFS_SOLOMOS_OT.zip \
14 GFS_DECKER.zip GFS_PHILOSTRATOS.zip GFS_GOSCHEN.zip GFS_BODONICLASS_OT.zip \
15 GFS_BASKERVILLE_OT.zip GFS_GAZIS.zip GFS_COMPLUTUM_OT.zip GFS_ELPIS_OT.zip"
17 # Rules to gen a SliTaz package suitable for Tazpkg.
18 genpkg_rules()
19 {
20 mkdir -p $src && cd $src
21 for font in $EXTRA_SOURCE_FILES; do
22 [ -s $SOURCES_REPOSITORY/${font} ] ||
23 wget -O $SOURCES_REPOSITORY/${font} \
24 http://www.greekfontsociety.gr/${font}
25 cp $SOURCES_REPOSITORY/${font} .
26 unzip -o ${font}
27 done
28 FONTDIR=$fs/usr/share/fonts/OTF/GFS
29 mkdir -p $FONTDIR
30 install -Dm644 $src/GFS*/*otf $FONTDIR
31 }