contrib/libfilezilla/Pkgfile

22 lines
483 B
Plaintext
Raw Normal View History

2017-05-08 00:49:18 +02:00
# Description: ftp client
# URL: http://filezilla-project.org
# Maintainer: Thomas Penteker, tek at serverop dot de
2019-10-21 19:19:12 +02:00
# Depends on: gnutls libidn2 clang
2017-05-08 00:49:18 +02:00
name=libfilezilla
2020-01-07 13:22:47 +01:00
version=0.19.3
2017-05-08 00:49:18 +02:00
release=1
2019-10-05 07:36:09 +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
export CXX=clang++
export CC=clang
./configure \
--prefix=/usr \
--disable-static
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/locale
2017-05-08 00:49:18 +02:00
}