wok-next view xorg-fonttosfnt/receipt @ rev 17573
Up: icu 54.1
| author | Alexander Medvedev <devl547@gmail.com> | 
|---|---|
| date | Sat Feb 07 21:10:31 2015 +0000 (2015-02-07) | 
| parents | 0ccb3190e4f3 | 
| children | ea3c4b76ea5d | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="xorg-fonttosfnt"
     4 VERSION="1.0.4"
     5 CATEGORY="x-window"
     6 SHORT_DESC="Wrap a bitmap font in a sfnt (TrueType) wrapper."
     7 MAINTAINER="pascal.bellard@slitaz.org"
     8 LICENSE="MIT"
     9 SOURCE="fonttosfnt"
    10 TARBALL="$SOURCE-$VERSION.tar.bz2"
    11 WEB_SITE="http://xorg.freedesktop.org/"
    12 WGET_URL="$WEB_SITE/releases/individual/app/$TARBALL"
    13 TAGS="utility xorg fonts"
    14 DEPENDS="xorg-libX11 freetype xorg-libfontenc"
    16 # Rules to configure and make the package.ls sr	
    17 compile_rules()
    18 {
    19 	cd $src
    20 	./configure \
    21 		--prefix=/usr \
    22 		--mandir=/usr/share/man \
    23 		$CONFIGURE_ARGS &&
    24 	make &&
    25 	make DESTDIR=$DESTDIR install
    26 }
    28 # Rules to gen a SliTaz package suitable for Tazpkg.
    29 genpkg_rules()
    30 {
    31 	mkdir -p $fs/usr
    32 	cp -a $install/usr/bin $fs/usr
    33 }