# HG changeset patch # User Hans-G?nter Theisgen # Date 1642688938 -3600 # Node ID ee50917f30ae71221cbfb2fd07e5e4a3931d7438 # Parent 46d8460b95e466dce502e8f8f9fe956b4a95219f updated udpcast (20120424 -> 20211207) diff -r 46d8460b95e4 -r ee50917f30ae udpcast/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/udpcast/description.txt Thu Jan 20 15:28:58 2022 +0100 @@ -0,0 +1,6 @@ +UDPcast is a file transfer tool that can send data simultaneously to many +destinations on a LAN. +This can for instance be used to install entire classrooms of PC's at once. +The advantage of UDPcast over using other methods (nfs, ftp, whatever) is +that UDPcast uses UDP's multicast abilities: it won't take longer to +install 15 machines than it would to install just 2. diff -r 46d8460b95e4 -r ee50917f30ae udpcast/receipt --- a/udpcast/receipt Wed Jan 19 09:24:46 2022 +0100 +++ b/udpcast/receipt Thu Jan 20 15:28:58 2022 +0100 @@ -1,23 +1,24 @@ # SliTaz package receipt. PACKAGE="udpcast" -VERSION="20120424" +VERSION="20211207" CATEGORY="network" SHORT_DESC="Multicast file transfer." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2 BSD" +WEB_SITE="http://udpcast.linux.lu/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://udpcast.linux.lu/" WGET_URL="${WEB_SITE}download/$TARBALL" -BUILD_DEPENDS="m4" - # Rules to configure and make the package. compile_rules() { - cd $src - ./configure --prefix=/usr --infodir=/usr/share/info \ - --mandir=/usr/share/man $CONFIGURE_ARGS && + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + $CONFIGURE_ARGS && make && make install } @@ -25,7 +26,6 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - cp -a $install/usr/sbin $fs/usr + cook_copy_folders sbin }