blob: afa1e6d683d7d8b907f8a3127c9f4494be4e3f6f (
plain)
1 # Description: ftp client
2 # URL: http://filezilla-project.org
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Packager: Bartlomiej Palmowski, rotwang at crux dot org dot pl
5 # Depends on: wxgtk gnutls xdg-utils tinyxml
6
7 name=filezilla
8 version=3.9.0.5
9 release=1
10 source=(http://downloads.sourceforge.net/project/$name/FileZilla_Client/$version/FileZilla_${version}_src.tar.bz2)
11
12 build() {
13 cd $name-$version
14 ./configure \
15 --prefix=/usr \
16 --mandir=/usr/man \
17 --disable-manualupdatecheck \
18 --disable-autoupdatecheck \
19 --disable-locales \
20 --disable-static \
21 --disable-dependency-tracking \
22 --without-dbus
23 make
24 make DESTDIR=$PKG install
25 rm -rf $PKG/usr/share/locale
26 }
|