wok view filezilla/receipt @ rev 15000

Add some GPL2 licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 10 17:00:38 2013 +0000 (2013-08-10)
parents 40eff44dd7b6
children eadd969eb97a
line source
1 # SliTaz package receipt.
3 PACKAGE="filezilla"
4 VERSION="3.5.1"
5 CATEGORY="network"
6 SHORT_DESC="FTP Client"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 SOURCE="FileZilla"
10 TARBALL="${SOURCE}_${VERSION}_src.tar.bz2"
11 WEB_SITE="http://filezilla-project.org/"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 TAGS="ftp client"
15 DEPENDS="wxWidgets gnutls libidn xorg-libXxf86vm libtasn1 sqlite"
16 BUILD_DEPENDS="xdg-utils gettext wxWidgets-dev gnutls-dev libidn-dev sqlite-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 ./configure \
23 --prefix=/usr \
24 --infodir=/usr/share/info \
25 --mandir=/usr/share/man \
26 --with-tinyxml=builtin \
27 --without-dbus \
28 $CONFIGURE_ARGS &&
29 make && make DESTDIR=$DESTDIR install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/share
36 cp -a $install/usr/bin $fs/usr
37 cp -a $install/usr/share/filezilla $fs/usr/share
39 rm -rf $fs/usr/share/fileszilla/docs
40 }