wok view filezilla/receipt @ rev 4175

Fix: netsurf *DEPENDS and update to 2.1
author Christophe Lincoln <pankso@slitaz.org>
date Tue Sep 22 21:44:06 2009 +0200 (2009-09-22)
parents
children fb8aceda65ff
line source
1 # SliTaz package receipt.
3 PACKAGE="filezilla"
4 VERSION="3.2.6.1"
5 CATEGORY="network"
6 SHORT_DESC="FTP Client"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="wxWidgets gnutls"
9 BUILD_DEPENDS="wxWidgets-dev gnutls-dev"
10 SOURCE="FileZilla"
11 TARBALL="${SOURCE}_${VERSION}_src.tar.bz2"
12 WEB_SITE="http://filezilla-project.org/"
13 WGET_URL="http://d10xg45o6p6dbl.cloudfront.net/projects/f/filezilla/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 src=$PACKAGE-$VERSION
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 --infodir=/usr/share/info \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make && make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 _pkg=$PACKAGE-$VERSION/_pkg
32 mkdir -p $fs/usr/share
33 cp -a $_pkg/usr/bin $fs/usr
34 cp -a $_pkg/usr/share/filezilla $fs/usr/share
36 rm -rf $fs/usr/share/fileszilla/docs
37 }