wok-next view udpcast/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents 9ee8f405f17f
children
line source
1 # SliTaz package receipt.
3 PACKAGE="udpcast"
4 VERSION="20120424"
5 CATEGORY="network"
6 SHORT_DESC="Multicast file transfer"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2 BSD"
9 WEB_SITE="http://udpcast.linux.lu/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="${WEB_SITE}download/$TARBALL"
14 BUILD_DEPENDS="m4 perl"
16 compile_rules() {
17 sed -i 's|#include "console.h"|#include <sys/select.h>\n&|' console.c
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make &&
25 make install
26 }
28 genpkg_rules() {
29 mkdir -p $fs/usr
30 cp -a $install/usr/sbin $fs/usr
31 }