contrib/libfilezilla/Pkgfile

22 lines
529 B
Plaintext
Raw Normal View History

2020-05-19 12:44:55 +02:00
# Description: filezilla common library
# URL: https://filezilla-project.org
2020-08-24 07:57:19 +02:00
# Maintainer: Tim Biermann, tbier at posteo dot de
2020-05-19 12:44:55 +02:00
# Depends on: clang gnutls libidn2
2017-05-08 00:49:18 +02:00
name=libfilezilla
2020-10-17 22:39:15 +02:00
version=0.25.0
2017-05-08 00:49:18 +02:00
release=1
2020-08-27 23:07:01 +02:00
source=(https://download.filezilla-project.org/$name/$name-$version.tar.bz2)
2017-05-08 00:49:18 +02:00
build() {
2019-10-05 07:36:09 +02:00
cd $name-$version
2020-05-19 12:44:55 +02:00
export CC=clang CXX=clang++ AR=llvm-ar NM=llvm-nm RANLIB=llvm-ranlib
autoreconf -vfi
2019-10-05 07:36:09 +02:00
./configure \
--prefix=/usr \
--disable-static
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/locale
2017-05-08 00:49:18 +02:00
}