blob: 7b94e98672e5e97d512a537565008ae83fe73d8e (
plain)
1 # Description: ftp client
2 # URL: http://filezilla-project.org
3 # Maintainer: Bartlomiej Palmowski, rotwang at crux dot org dot pl
4 # Depends on: wxgtk libidn gnutls
5
6 name=filezilla
7 version=3.2.3.1
8 release=1
9 source=(http://dl.sourceforge.net/sourceforge/$name/FileZilla_${version}_src.tar.bz2)
10
11 build() {
12 cd $name-$version
13 ./configure \
14 --mandir=/usr/man \
15 --disable-manualupdatecheck \
16 --disable-static \
17 --disable-locales \
18 --prefix=/usr
19 make
20 make DESTDIR=$PKG install
21 rm -rf $PKG/usr/share/locale
22 }
|