wok-6.x annotate igmpproxy/receipt @ rev 21577
qbittorrent: try gcc83
author | Hans-G?nter Theisgen |
---|---|
date | Sun May 19 15:28:18 2019 +0100 (2019-05-19) |
parents | de49f29b101e |
children | 5ea0ce1cecc0 |
rev | line source |
---|---|
pascal@7825 | 1 # SliTaz package receipt. |
pascal@7825 | 2 |
pascal@7825 | 3 PACKAGE="igmpproxy" |
Hans-G?nter@21043 | 4 VERSION="0.2.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" |
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 |
pascal@7825 | 14 # Rules to configure and make the package. |
pascal@7825 | 15 compile_rules() |
pascal@7825 | 16 { |
Hans-G?nter@21043 | 17 ./configure \ |
Hans-G?nter@21043 | 18 --prefix=/usr \ |
Hans-G?nter@21043 | 19 --infodir=/usr/share/info \ |
Hans-G?nter@21043 | 20 --sysconfdir=/etc \ |
Hans-G?nter@21043 | 21 --mandir=/usr/share/man \ |
Hans-G?nter@21043 | 22 $CONFIGURE_ARGS && |
Hans-G?nter@21043 | 23 make -j 1 && |
pascal@15600 | 24 make DESTDIR=$DESTDIR install |
pascal@7825 | 25 } |
pascal@7825 | 26 |
pascal@7825 | 27 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@7825 | 28 genpkg_rules() |
pascal@7825 | 29 { |
pascal@7825 | 30 mkdir -p $fs/usr/ |
Hans-G?nter@21043 | 31 |
Hans-G?nter@21043 | 32 cp -a $install/etc $fs |
Hans-G?nter@21043 | 33 cp -a $install/usr/sbin $fs/usr |
pascal@7825 | 34 } |