wok-next view filezilla/receipt @ rev 14800
xz: remove liblzma
| author | Pascal Bellard <pascal.bellard@slitaz.org> | 
|---|---|
| date | Sat Jul 13 16:21:42 2013 +0200 (2013-07-13) | 
| parents | 18addd5dacea | 
| children | 380ffe05937a | 
 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 SOURCE="FileZilla"
     9 TARBALL="${SOURCE}_${VERSION}_src.tar.bz2"
    10 WEB_SITE="http://filezilla-project.org/"
    11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    12 TAGS="ftp client"
    14 DEPENDS="wxWidgets gnutls libidn xorg-libXxf86vm libtasn1 sqlite"
    15 BUILD_DEPENDS="xdg-utils gettext wxWidgets-dev gnutls-dev libidn-dev sqlite-dev"
    17 # Rules to configure and make the package.
    18 compile_rules()
    19 {
    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=$DESTDIR install
    29 }
    31 # Rules to gen a SliTaz package suitable for Tazpkg.
    32 genpkg_rules()
    33 {
    34 	mkdir -p $fs/usr/share
    35 	cp -a $_pkg/usr/bin $fs/usr
    36 	cp -a $_pkg/usr/share/filezilla $fs/usr/share
    38 	rm -rf $fs/usr/share/fileszilla/docs
    39 }