wok view frox/receipt @ rev 21679

updated phonon and phonon-dev (4.7.2 -> 4.10.2)
author Hans-G?nter Theisgen
date Sun Jun 02 11:16:48 2019 +0100 (2019-06-02)
parents 7d6eb2dc1314
children 640a2eba2511
line source
1 # SliTaz package receipt.
3 PACKAGE="frox"
4 VERSION="0.7.18"
5 CATEGORY="network"
6 SHORT_DESC="A transparent ftp proxy"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://frox.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
12 CONFIG_FILES="/etc/frox.conf"
13 TAGS="ftp"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 ./configure --prefix=/usr \
19 --enable-configfile=/etc/frox.conf \
20 $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/etc
29 cp -a $src/src/frox.conf $fs/etc
30 chown root.root $fs/etc/frox.conf
31 cp -a $install/usr $fs/
32 }