wok view stund/receipt @ rev 25074

Add python-ipaddress
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jun 13 19:39:39 2022 +0000 (23 months ago)
parents 86790a278e70
children ca38ecbe9976
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 # What is the latest version available today?
17 current_version()
18 {
19 wget -O - https://sourceforge.net/projects/stun/files/stun/ 2>/dev/null | \
20 sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \
21 sed '/scope="row/!d;s|.*/stun/||;s|/.*||;q'
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 make
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/bin
34 cp -a $src/server $fs/usr/bin/stunserver
35 cp -a $src/client $fs/usr/bin/stunclient
36 }