wok annotate atm-tools/receipt @ rev 4453

Up: get-java6-jre (update 17)
author Paul Issott <paul@slitaz.org>
date Sun Nov 08 11:20:28 2009 +0000 (2009-11-08)
parents c92b90a14744
children f4fd0777003f
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
pascal@4200 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 &&
pascal@2200 22 make DESTDIR=$PWD/_pkg 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