wok annotate atm-tools/receipt @ rev 20532
wireshark: update bdeps
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Nov 21 15:56:07 2018 +0100 (2018-11-21) |
parents | 7f39549720b8 |
children | 5f6c5106b1f5 |
rev | line source |
---|---|
pascal@2200 | 1 # SliTaz package receipt. |
pascal@2200 | 2 |
pascal@2200 | 3 PACKAGE="atm-tools" |
pascal@11805 | 4 VERSION="2.5.2" |
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@15362 | 8 LICENSE="GPL2" |
al@19275 | 9 WEB_SITE="http://linux-atm.sourceforge.net/" |
pascal@2200 | 10 SOURCE="linux-atm" |
pascal@2200 | 11 TARBALL="$SOURCE-$VERSION.tar.gz" |
pascal@2200 | 12 WGET_URL="$SF_MIRROR/$SOURCE/$TARBALL" |
pascal@2200 | 13 CONFIG_FILES="/etc/atmsigd.conf" |
pascal@2200 | 14 |
pascal@15362 | 15 BUILD_DEPENDS="flex" |
pascal@15362 | 16 |
pascal@2200 | 17 # Rules to configure and make the package. |
pascal@2200 | 18 compile_rules() |
pascal@2200 | 19 { |
slaxemulator@8751 | 20 busybox patch -p0 < $stuff/MAX_PATH.u |
al@19275 | 21 |
pascal@2200 | 22 ./configure --prefix=/usr --infodir=/usr/share/info \ |
pascal@2200 | 23 --sysconfdir=/etc --mandir=/usr/share/man $CONFIGURE_ARGS && |
pascal@9044 | 24 make -j1 && |
pascal@9044 | 25 make -j1 DESTDIR=$DESTDIR install |
pascal@2200 | 26 } |
pascal@2200 | 27 |
pascal@2200 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@2200 | 29 genpkg_rules() |
pascal@2200 | 30 { |
pascal@2200 | 31 mkdir -p $fs/usr/lib |
pascal@15362 | 32 cp -a $install/etc $fs |
pascal@15362 | 33 cp -a $install/usr/bin $fs/usr |
pascal@15362 | 34 cp -a $install/usr/sbin $fs/usr |
pascal@15362 | 35 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pascal@2200 | 36 } |