22 lines
538 B
Plaintext
22 lines
538 B
Plaintext
# Description: filezilla common library
|
|
# URL: https://filezilla-project.org
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
|
# Depends on: clang gnutls libidn2
|
|
|
|
name=libfilezilla
|
|
version=0.22.0
|
|
release=1
|
|
source=(https://download.filezilla-project.org/${name}/${name}-${version}.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
export CC=clang CXX=clang++ AR=llvm-ar NM=llvm-nm RANLIB=llvm-ranlib
|
|
autoreconf -vfi
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-static
|
|
make
|
|
make DESTDIR=$PKG install
|
|
rm -rf $PKG/usr/share/locale
|
|
}
|