wok annotate filezilla/receipt @ rev 17529

Up firefox-official (35.0)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jan 19 13:34:32 2015 +0100 (2015-01-19)
parents 380ffe05937a
children affba9aecc73
rev   line source
erjo@3671 1 # SliTaz package receipt.
erjo@3671 2
erjo@3671 3 PACKAGE="filezilla"
slaxemulator@15840 4 VERSION="3.7.3"
erjo@3671 5 CATEGORY="network"
erjo@3671 6 SHORT_DESC="FTP Client"
erjo@3671 7 MAINTAINER="erjo@slitaz.org"
pascal@15000 8 LICENSE="GPL2"
erjo@3671 9 SOURCE="FileZilla"
erjo@3671 10 TARBALL="${SOURCE}_${VERSION}_src.tar.bz2"
erjo@3671 11 WEB_SITE="http://filezilla-project.org/"
slaxemulator@8538 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
jozee@4936 13 TAGS="ftp client"
erjo@3671 14
gokhlayeh@11432 15 DEPENDS="wxWidgets gnutls libidn xorg-libXxf86vm libtasn1 sqlite"
pascal@12400 16 BUILD_DEPENDS="xdg-utils gettext wxWidgets-dev gnutls-dev libidn-dev sqlite-dev"
erjo@9933 17
erjo@3671 18 # Rules to configure and make the package.
erjo@3671 19 compile_rules()
erjo@3671 20 {
erjo@3671 21 cd $src
erjo@3671 22 ./configure \
erjo@3671 23 --prefix=/usr \
erjo@3671 24 --infodir=/usr/share/info \
erjo@3671 25 --mandir=/usr/share/man \
slaxemulator@6253 26 --with-tinyxml=builtin \
slaxemulator@6253 27 --without-dbus \
erjo@3671 28 $CONFIGURE_ARGS &&
erjo@9933 29 make && make DESTDIR=$DESTDIR install
erjo@3671 30 }
erjo@3671 31
erjo@3671 32 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@3671 33 genpkg_rules()
erjo@3671 34 {
erjo@3671 35 mkdir -p $fs/usr/share
pascal@15000 36 cp -a $install/usr/bin $fs/usr
pascal@15000 37 cp -a $install/usr/share/filezilla $fs/usr/share
erjo@3671 38
erjo@3671 39 rm -rf $fs/usr/share/fileszilla/docs
erjo@3671 40 }
erjo@3671 41