blob: 8ff78eff1be3587d690fdcd9322b65ad2d42ba55 (
plain)
1 # Description: ftp client
2 # URL: https://filezilla-project.org
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Depends on: libfilezilla libnotify libwebp pugixml wxgtk3 xdg-utils
5
6 name=filezilla
7 version=3.49.1
8 release=1
9 source=(https://download.filezilla-project.org/client/FileZilla_${version}_src.tar.bz2
10 missing-list-include.patch)
11
12 build() {
13 cd $name-$version
14 export CC=clang CXX=clang++ AR=llvm-ar NM=llvm-nm RANLIB=llvm-ranlib
15 patch -Np0 -i $SRC/missing-list-include.patch
16 autoreconf -vfi
17 ./configure \
18 --prefix=/usr \
19 --mandir=/usr/share/man \
20 --with-pugixml=system \
21 --with-wx-config=/usr/bin/wx-config-gtk3 \
22 --disable-manualupdatecheck \
23 --disable-autoupdatecheck \
24 --disable-locales \
25 --disable-static \
26 --disable-dependency-tracking
27 make
28 make DESTDIR=$PKG install
29 rm -rf $PKG/usr/share/locale
30 }
|