wok diff xorg-mkfontdir/receipt @ rev 11650

Up: firefox (10.0)
author Christophe Lincoln <pankso@slitaz.org>
date Mon Feb 06 16:36:25 2012 +0100 (2012-02-06)
parents
children fae364445e65
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/xorg-mkfontdir/receipt	Mon Feb 06 16:36:25 2012 +0100
     1.3 @@ -0,0 +1,34 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="xorg-mkfontdir"
     1.7 +VERSION="1.0.6"
     1.8 +CATEGORY="x-window"
     1.9 +SHORT_DESC="Create an index of X font files in a directory."
    1.10 +MAINTAINER="pascal.bellard@slitaz.org"
    1.11 +SOURCE="mkfontdir"
    1.12 +TARBALL="$SOURCE-$VERSION.tar.bz2"
    1.13 +WEB_SITE="http://xorg.freedesktop.org/"
    1.14 +WGET_URL="$WEB_SITE/releases/individual/app/$TARBALL"
    1.15 +TAGS="utility xorg fonts"
    1.16 +DEPENDS="xorg-mkfontscale"
    1.17 +
    1.18 +# Rules to configure and make the package.ls sr	
    1.19 +compile_rules()
    1.20 +{
    1.21 +	cd $src
    1.22 +	./configure \
    1.23 +		--prefix=/usr \
    1.24 +		--mandir=/usr/share/man \
    1.25 +		$CONFIGURE_ARGS &&
    1.26 +	make &&
    1.27 +	make DESTDIR=$DESTDIR install
    1.28 +}
    1.29 +
    1.30 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.31 +genpkg_rules()
    1.32 +{
    1.33 +	mkdir -p $fs/usr
    1.34 +	cp -a $_pkg/usr/bin $fs/usr
    1.35 +	chmod +x $fs/usr/bin/*
    1.36 +}
    1.37 +