wok view turnserver/receipt @ rev 8232

Fixed busybox again. Cpio patch is not need as of 1.18.2.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Jan 26 20:38:28 2011 +0000 (2011-01-26)
parents
children 0848d0285d55
line source
1 # SliTaz package receipt.
3 PACKAGE="turnserver"
4 VERSION="0.4"
5 CATEGORY="network"
6 SHORT_DESC="open-source TURN server implementation."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://turnserver.sourceforge.net/"
10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
11 DEPENDS="openssl"
12 BUILD_DEPENDS="libconfuse openssl-dev"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --mandir=/usr/share/man \
19 $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $_pkg/usr/bin $fs/usr
29 }