wok view filezilla/receipt @ rev 4279

libnl: fix build (http://bugs.gentoo.org/show_bug.cgi?id=225393)
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sat Sep 26 06:38:25 2009 +0000 (2009-09-26)
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 }