wok annotate igmpproxy/receipt @ rev 21034

updated help2man (1.40.12 -> 1.47.8)
author Hans-G?nter Theisgen
date Mon Mar 11 13:26:42 2019 +0100 (2019-03-11)
parents 35515c7ce512
children eecd843ce61a
rev   line source
pascal@7825 1 # SliTaz package receipt.
pascal@7825 2
pascal@7825 3 PACKAGE="igmpproxy"
pascal@7825 4 VERSION="0.1"
pascal@7825 5 CATEGORY="network"
pascal@7825 6 SHORT_DESC="Simple forwarding of Multicast traffic between networks."
pascal@7825 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15600 8 LICENSE="GPL2"
pascal@7825 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@7825 10 WEB_SITE="http://igmpproxy.sourceforge.net/"
pascal@7825 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@7825 12
pascal@7825 13 # Rules to configure and make the package.
pascal@7825 14 compile_rules()
pascal@7825 15 {
pascal@7825 16 cd $src
pascal@7825 17 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@7825 18 --sysconfdir=/etc --mandir=/usr/share/man \
pascal@7825 19 $CONFIGURE_ARGS &&
pascal@7825 20 make &&
pascal@15600 21 make DESTDIR=$DESTDIR install
pascal@7825 22 }
pascal@7825 23
pascal@7825 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@7825 25 genpkg_rules()
pascal@7825 26 {
pascal@7825 27 mkdir -p $fs/usr/
pascal@15600 28 cp -a $install/etc $fs
pascal@15600 29 cp -a $install/usr/sbin $fs/usr
pascal@7825 30 }