wok-next diff xorg-mkfontdir/receipt @ rev 13751
clamtk: fix genpkg_rules (thanks ernia)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Jan 02 14:23:17 2013 +0100 (2013-01-02) |
parents | bf4417b54ba9 |
children | eb8067417980 |
line diff
1.1 --- a/xorg-mkfontdir/receipt Thu Nov 03 10:39:15 2011 +0100 1.2 +++ b/xorg-mkfontdir/receipt Wed Jan 02 14:23:17 2013 +0100 1.3 @@ -1,34 +1,33 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="xorg-mkfontdir" 1.7 -VERSION="1.0.6" 1.8 +VERSION="1.0.7" 1.9 CATEGORY="x-window" 1.10 SHORT_DESC="Create an index of X font files in a directory." 1.11 MAINTAINER="pascal.bellard@slitaz.org" 1.12 SOURCE="mkfontdir" 1.13 TARBALL="$SOURCE-$VERSION.tar.bz2" 1.14 WEB_SITE="http://xorg.freedesktop.org/" 1.15 -WGET_URL="$WEB_SITE/releases/individual/app/$TARBALL" 1.16 +WGET_URL="$XORG_MIRROR/app/$TARBALL" 1.17 TAGS="utility xorg fonts" 1.18 + 1.19 DEPENDS="xorg-mkfontscale" 1.20 1.21 -# Rules to configure and make the package.ls sr 1.22 +# Rules to configure and make the package.ls sr 1.23 compile_rules() 1.24 { 1.25 cd $src 1.26 ./configure \ 1.27 - --prefix=/usr \ 1.28 --mandir=/usr/share/man \ 1.29 $CONFIGURE_ARGS && 1.30 - make && 1.31 - make DESTDIR=$DESTDIR install 1.32 + make && make install 1.33 } 1.34 1.35 # Rules to gen a SliTaz package suitable for Tazpkg. 1.36 genpkg_rules() 1.37 { 1.38 mkdir -p $fs/usr 1.39 - cp -a $_pkg/usr/bin $fs/usr 1.40 + cp -a $install/usr/bin $fs/usr 1.41 chmod +x $fs/usr/bin/* 1.42 } 1.43