wok view stund/receipt @ rev 21490

trickle: fix build
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed May 01 18:05:32 2019 +0200 (2019-05-01)
parents e30611c357f2
children e919c5a2742d
line source
1 # SliTaz package receipt.
3 PACKAGE="stund"
4 VERSION="0.97"
5 CATEGORY="network"
6 SHORT_DESC="a simple STUN server and client."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="other"
9 TARBALL="$PACKAGE-$VERSION.tgz"
10 WEB_SITE="https://sourceforge.net/projects/stun/"
11 WGET_URL="$SF_MIRROR/stun/$TARBALL"
13 DEPENDS="gcc-lib-base"
14 BUILD_DEPENDS=""
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 make
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/bin
26 cp -a $src/server $fs/usr/bin/stunserver
27 cp -a $src/client $fs/usr/bin/stunclient
28 }