wok view frox/receipt @ rev 20102

Add plsh & pypdf2
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Oct 09 13:07:28 2017 +0200 (2017-10-09)
parents ca224f09fcb3
children 8e449fe1df2e
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 TAG="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 }