blob: 8da6540ef5d72ed50982735e7fbef3bd456fbe1c (
plain)
1 # Description: ftp client
2 # URL: http://filezilla-project.org
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Depends on: libfilezilla libnotify libwebp wxgtk xdg-utils
5
6 name=filezilla
7 version=3.46.3
8 release=1
9 source=(https://download.filezilla-project.org/client/FileZilla_${version}_src.tar.bz2)
10
11 build() {
12 cd $name-$version
13 ./configure \
14 --prefix=/usr \
15 --mandir=/usr/share/man \
16 --disable-manualupdatecheck \
17 --disable-autoupdatecheck \
18 --disable-locales \
19 --disable-static \
20 --with-pugixml=builtin \
21 --disable-dependency-tracking
22 make
23 make DESTDIR=$PKG install
24 rm -rf $PKG/usr/share/locale
25 }
|