wok view filezilla/receipt @ rev 7034

Change my mail
author Antoine Bodin <gokhlayeh@slitaz.org>
date Sun Oct 31 23:30:12 2010 +0100 (2010-10-31)
parents b68b4f934ba7
children 51d8e52cf968
line source
1 # SliTaz package receipt.
3 PACKAGE="filezilla"
4 VERSION="3.3.4.1"
5 CATEGORY="network"
6 SHORT_DESC="FTP Client"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="wxWidgets gnutls libidn xorg-libXxf86vm libtasn1"
9 BUILD_DEPENDS="wxWidgets-dev gnutls gnutls-dev libidn libidn-dev xdg-utils gettext"
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"
14 TAGS="ftp client"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 src=$PACKAGE-$VERSION
20 cd $src
21 ./configure \
22 --prefix=/usr \
23 --infodir=/usr/share/info \
24 --mandir=/usr/share/man \
25 --with-tinyxml=builtin \
26 --without-dbus \
27 $CONFIGURE_ARGS &&
28 make && make DESTDIR=$PWD/_pkg install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 _pkg=$PACKAGE-$VERSION/_pkg
35 mkdir -p $fs/usr/share
36 cp -a $_pkg/usr/bin $fs/usr
37 cp -a $_pkg/usr/share/filezilla $fs/usr/share
39 rm -rf $fs/usr/share/fileszilla/docs
40 }