wok-next annotate atm-tools/receipt @ rev 8787
Fix compile_rules() in gtk-engines-rezlooks
author | Antoine Bodin <gokhlayeh@slitaz.org> |
---|---|
date | Tue Feb 22 22:56:38 2011 +0100 (2011-02-22) |
parents | f4fd0777003f |
children | 59009b1c6878 |
rev | line source |
---|---|
pascal@2200 | 1 # SliTaz package receipt. |
pascal@2200 | 2 |
pascal@2200 | 3 PACKAGE="atm-tools" |
pascal@2200 | 4 VERSION="2.5.0" |
pascal@2200 | 5 CATEGORY="system-tools" |
pascal@2200 | 6 SHORT_DESC="User space tools for atm." |
pascal@2200 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@2200 | 8 SOURCE="linux-atm" |
pascal@2200 | 9 TARBALL="$SOURCE-$VERSION.tar.gz" |
pascal@2200 | 10 WEB_SITE="http://$SOURCE.sourceforge.net/" |
pascal@2200 | 11 WGET_URL="$SF_MIRROR/$SOURCE/$TARBALL" |
pascal@2200 | 12 CONFIG_FILES="/etc/atmsigd.conf" |
pascal@2200 | 13 |
pascal@2200 | 14 # Rules to configure and make the package. |
pascal@2200 | 15 compile_rules() |
pascal@2200 | 16 { |
pascal@2200 | 17 cd $src |
slaxemulator@8751 | 18 busybox patch -p0 < $stuff/MAX_PATH.u |
pascal@2200 | 19 ./configure --prefix=/usr --infodir=/usr/share/info \ |
pascal@2200 | 20 --sysconfdir=/etc --mandir=/usr/share/man $CONFIGURE_ARGS && |
pascal@2200 | 21 make && |
slaxemulator@8751 | 22 make DESTDIR=$DESTDIR install |
pascal@2200 | 23 } |
pascal@2200 | 24 |
pascal@2200 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@2200 | 26 genpkg_rules() |
pascal@2200 | 27 { |
pascal@2200 | 28 mkdir -p $fs/usr/lib |
pascal@2278 | 29 cp -a $_pkg/etc $fs |
pascal@2200 | 30 cp -a $_pkg/usr/bin $fs/usr |
pascal@2200 | 31 cp -a $_pkg/usr/sbin $fs/usr |
pascal@2200 | 32 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
pascal@2200 | 33 } |
pascal@2200 | 34 |