wok view turnserver/receipt @ rev 17979

mtpaint: view external using GPicView, print image using Yad, view documentation online using TazWeb.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Apr 18 17:02:44 2015 +0300 (2015-04-18)
parents 6a0bb22dcc73
children 5f6c5106b1f5
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 }