33 lines
1.1 KiB
Bash
33 lines
1.1 KiB
Bash
# Template file for 'libfilezilla'
|
|
# filezilla needs to be rebuilt when libfilezilla version changes, ABI is not stable
|
|
pkgname=libfilezilla
|
|
version=0.19.1
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--disable-static"
|
|
hostmakedepends="pkg-config"
|
|
makedepends="nettle-devel gnutls-devel"
|
|
short_desc="Small and modern C++ library, which offers some basic functionalities"
|
|
maintainer="bra1nwave <bra1nwave@protonmail.com>"
|
|
license="GPL-2.0-or-later"
|
|
homepage="https://lib.filezilla-project.org/"
|
|
changelog="https://svn.filezilla-project.org/filezilla/libfilezilla/trunk/NEWS?view=co"
|
|
distfiles="https://download.filezilla-project.org/${pkgname}/${pkgname}-${version}.tar.bz2"
|
|
checksum=0a42efed8320a6eac51b10d4d5960c129cc442bfaa93a4d6df115b8bcc665a32
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
armv[56]*|ppc|ppc-musl*)
|
|
makedepends+=" libatomic-devel"
|
|
LDFLAGS+=" -latomic"
|
|
;;
|
|
esac
|
|
|
|
libfilezilla-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="libfilezilla>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove "usr/lib/*.so"
|
|
vmove usr/lib/pkgconfig
|
|
}
|
|
}
|