wok annotate udpcast/receipt @ rev 22760

updated findutils (4.6.0 -> 4.7.0)
author Hans-G?nter Theisgen
date Fri Jan 24 17:10:12 2020 +0100 (2020-01-24)
parents c0252ab44dd4
children ee50917f30ae
rev   line source
pascal@1859 1 # SliTaz package receipt.
pascal@1859 2
pascal@1859 3 PACKAGE="udpcast"
erjo@13430 4 VERSION="20120424"
pascal@1859 5 CATEGORY="network"
pascal@1862 6 SHORT_DESC="Multicast file transfer."
pascal@1859 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15022 8 LICENSE="GPL2 BSD"
pascal@1859 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@1859 10 WEB_SITE="http://udpcast.linux.lu/"
pascal@1859 11 WGET_URL="${WEB_SITE}download/$TARBALL"
pascal@1859 12
erjo@13430 13 BUILD_DEPENDS="m4"
erjo@13430 14
pascal@1859 15 # Rules to configure and make the package.
pascal@1859 16 compile_rules()
pascal@1859 17 {
pascal@1859 18 cd $src
pascal@1859 19 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@1859 20 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@1859 21 make &&
erjo@13430 22 make install
pascal@1859 23 }
pascal@1859 24
pascal@1859 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1859 26 genpkg_rules()
pascal@1859 27 {
pascal@1859 28 mkdir -p $fs/usr
erjo@13430 29 cp -a $install/usr/sbin $fs/usr
pascal@1859 30 }
pascal@1859 31