wok-current annotate igmpproxy/receipt @ rev 24660
updated igmpproxy (0.2.1 -> 0.3)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Mar 11 10:09:19 2022 +0100 (2022-03-11) |
parents | 5ea0ce1cecc0 |
children |
rev | line source |
---|---|
pascal@7825 | 1 # SliTaz package receipt. |
pascal@7825 | 2 |
pascal@7825 | 3 PACKAGE="igmpproxy" |
Hans-G?nter@24660 | 4 VERSION="0.3" |
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" |
Hans-G?nter@21043 | 9 WEB_SITE="https://github.com/pali/igmpproxy" |
Hans-G?nter@21043 | 10 |
pascal@7825 | 11 TARBALL="$PACKAGE-$VERSION.tar.gz" |
Hans-G?nter@21043 | 12 WGET_URL="$WEB_SITE/releases/download/$VERSION/$TARBALL" |
pascal@7825 | 13 |
Hans-G?nter@24660 | 14 CONFIG_FILES="/etc/igmpproxy.conf" |
Hans-G?nter@24660 | 15 |
pascal@24055 | 16 current_version() |
pascal@24055 | 17 { |
pascal@24055 | 18 wget -O - ${WGET_URL%/down*} 2>/dev/null | \ |
pascal@24055 | 19 sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' |
pascal@24055 | 20 } |
pascal@24055 | 21 |
pascal@7825 | 22 # Rules to configure and make the package. |
pascal@7825 | 23 compile_rules() |
pascal@7825 | 24 { |
Hans-G?nter@21043 | 25 ./configure \ |
Hans-G?nter@21043 | 26 --prefix=/usr \ |
Hans-G?nter@21043 | 27 --infodir=/usr/share/info \ |
Hans-G?nter@21043 | 28 --sysconfdir=/etc \ |
Hans-G?nter@21043 | 29 --mandir=/usr/share/man \ |
Hans-G?nter@21043 | 30 $CONFIGURE_ARGS && |
Hans-G?nter@24660 | 31 make && |
Hans-G?nter@24660 | 32 make install DESTDIR=$DESTDIR |
pascal@7825 | 33 } |
pascal@7825 | 34 |
pascal@7825 | 35 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@7825 | 36 genpkg_rules() |
pascal@7825 | 37 { |
Hans-G?nter@24660 | 38 cook_copy_folders etc |
Hans-G?nter@24660 | 39 cook_copy_folders sbin |
pascal@7825 | 40 } |