2008-11-01 18:31:26 +01:00
|
|
|
# Description: ftp client
|
2020-05-19 10:45:18 +00:00
|
|
|
# URL: https://filezilla-project.org
|
2020-08-24 05:57:36 +00:00
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
2020-05-19 10:45:18 +00:00
|
|
|
# Depends on: libfilezilla libnotify libwebp pugixml wxgtk3 xdg-utils
|
2008-11-01 18:31:26 +01:00
|
|
|
|
|
|
|
name=filezilla
|
2020-10-21 08:27:42 +00:00
|
|
|
version=3.51.0
|
2008-11-01 18:31:26 +01:00
|
|
|
release=1
|
2020-05-19 10:45:18 +00:00
|
|
|
source=(https://download.filezilla-project.org/client/FileZilla_${version}_src.tar.bz2
|
|
|
|
missing-list-include.patch)
|
2008-11-01 18:31:26 +01:00
|
|
|
|
|
|
|
build() {
|
2020-05-19 10:45:18 +00:00
|
|
|
cd $name-$version
|
|
|
|
export CC=clang CXX=clang++ AR=llvm-ar NM=llvm-nm RANLIB=llvm-ranlib
|
|
|
|
patch -Np0 -i $SRC/missing-list-include.patch
|
|
|
|
autoreconf -vfi
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--mandir=/usr/share/man \
|
2020-06-01 13:05:01 +00:00
|
|
|
--with-pugixml=system \
|
|
|
|
--with-wx-config=/usr/bin/wx-config-gtk3 \
|
2020-05-19 10:45:18 +00:00
|
|
|
--disable-manualupdatecheck \
|
|
|
|
--disable-autoupdatecheck \
|
|
|
|
--disable-locales \
|
|
|
|
--disable-static \
|
2020-06-01 13:05:01 +00:00
|
|
|
--disable-dependency-tracking
|
2020-05-19 10:45:18 +00:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -rf $PKG/usr/share/locale
|
2008-11-01 18:31:26 +01:00
|
|
|
}
|