wok view igmpproxy/receipt @ rev 20596

xfi, xfw, cryptkeeper: (not so) dirty hack
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Dec 16 11:41:49 2018 +0100 (2018-12-16)
parents 35515c7ce512
children eecd843ce61a
line source
1 # SliTaz package receipt.
3 PACKAGE="igmpproxy"
4 VERSION="0.1"
5 CATEGORY="network"
6 SHORT_DESC="Simple forwarding of Multicast traffic between networks."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://igmpproxy.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr --infodir=/usr/share/info \
18 --sysconfdir=/etc --mandir=/usr/share/man \
19 $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/
28 cp -a $install/etc $fs
29 cp -a $install/usr/sbin $fs/usr
30 }