5dc2e36b66
Caution ======= libfilezilla has lost a maintainer, and will be removed from the contrib soon if no new maintainer is found. Feel free to adopt it if need.
23 lines
496 B
Plaintext
23 lines
496 B
Plaintext
# Description: Small and modern C++ library, which offers some basic functionalities
|
|
# URL: https://lib.filezilla-project.org/
|
|
# Maintainer: UNMAINTAINED
|
|
# Depends on: gnutls
|
|
|
|
name=libfilezilla
|
|
version=0.26.0
|
|
release=2
|
|
source=(https://download.filezilla-project.org/$name/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-doxygen-doc \
|
|
--disable-locales \
|
|
--disable-static \
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|