wok view gadmin-openvpn-server/receipt @ rev 16374

Up: slitaz-configs (5.4) Getting ready for 5.0-RC1
author Christophe Lincoln <pankso@slitaz.org>
date Mon Apr 14 19:59:46 2014 +0200 (2014-04-14)
parents 263740877e70
children 8dd8bab3f0ca
line source
1 # SliTaz package receipt.
3 PACKAGE="gadmin-openvpn-server"
4 VERSION="0.1.6"
5 CATEGORY="x-window"
6 SHORT_DESC="GTK+ configuration tool for OpenVPN (server)."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://dalalven.dtdns.net/linux/gadmintools-webpage/"
11 WGET_URL="http://dalalven.dtdns.net/linux/gadmin-openvpn/server/$TARBALL"
13 DEPENDS="gtk+ openvpn"
14 BUILD_DEPENDS="gtk+-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure --prefix=/usr \
22 --sysconfdir=/etc \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/share/applications
33 cp -a $install/etc $fs
34 cp -a $install/usr/sbin $fs/usr
35 cp -a $install/usr/share/pixmaps $fs/usr/share
36 cp -a $stuff/$PACKAGE.desktop $fs/usr/share/applications
37 }