wok annotate xorg-fonttosfnt/receipt @ rev 12269
Up: glibc (2.14.1)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Thu Apr 12 16:31:36 2012 +0200 (2012-04-12) |
parents | bf4417b54ba9 |
children | eb8067417980 |
rev | line source |
---|---|
pascal@11203 | 1 # SliTaz package receipt. |
pascal@11203 | 2 |
pascal@11203 | 3 PACKAGE="xorg-fonttosfnt" |
pascal@11203 | 4 VERSION="1.0.4" |
pascal@11203 | 5 CATEGORY="x-window" |
pascal@11203 | 6 SHORT_DESC="Wrap a bitmap font in a sfnt (TrueType) wrapper." |
pascal@11203 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@11203 | 8 SOURCE="fonttosfnt" |
pascal@11203 | 9 TARBALL="$SOURCE-$VERSION.tar.bz2" |
pascal@11203 | 10 WEB_SITE="http://xorg.freedesktop.org/" |
pascal@11203 | 11 WGET_URL="$WEB_SITE/releases/individual/app/$TARBALL" |
pascal@11203 | 12 TAGS="utility xorg fonts" |
gokhlayeh@11470 | 13 DEPENDS="xorg-libX11 freetype xorg-libfontenc" |
pascal@11203 | 14 |
pascal@11203 | 15 # Rules to configure and make the package.ls sr |
pascal@11203 | 16 compile_rules() |
pascal@11203 | 17 { |
pascal@11203 | 18 cd $src |
pascal@11203 | 19 ./configure \ |
pascal@11203 | 20 --prefix=/usr \ |
pascal@11203 | 21 --mandir=/usr/share/man \ |
pascal@11203 | 22 $CONFIGURE_ARGS && |
pascal@11203 | 23 make && |
pascal@11203 | 24 make DESTDIR=$DESTDIR install |
pascal@11203 | 25 } |
pascal@11203 | 26 |
pascal@11203 | 27 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@11203 | 28 genpkg_rules() |
pascal@11203 | 29 { |
pascal@11203 | 30 mkdir -p $fs/usr |
pascal@11203 | 31 cp -a $_pkg/usr/bin $fs/usr |
pascal@11203 | 32 } |
pascal@11203 | 33 |