wok-6.x annotate udpcast/receipt @ rev 15792
linux: CONFIG_I2C_EG20T=m
author | Richard Dunbar <mojo@slitaz.org> |
---|---|
date | Fri Jan 17 10:28:33 2014 +0000 (2014-01-17) |
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 |