wok-next view turnserver/receipt @ rev 19084
Add: autoconf213, palemoon
author | Xander Ziiryanoff <psychomaniak@xakep.ru> |
---|---|
date | Sat Apr 30 00:11:09 2016 +0200 (2016-04-30) |
parents | 6a0bb22dcc73 |
children | 0c247ee1a841 |
line source
1 # SliTaz package receipt.
3 PACKAGE="turnserver"
4 VERSION="0.7.3"
5 CATEGORY="network"
6 SHORT_DESC="open-source TURN server implementation."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://turnserver.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS="openssl"
14 BUILD_DEPENDS="libconfuse openssl-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 # configure script should be really fixed...
20 ln -s $src/missing /root
21 cd $src
22 ./configure --prefix=/usr --mandir=/usr/share/man \
23 $CONFIGURE_ARGS 2>&1 | grep -v //missing &&
24 make &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $install/usr/bin $fs/usr
33 }