mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 19:55:26 +03:00
34 lines
877 B
Text
34 lines
877 B
Text
# Maintainer: Leonardo Arena <rnalrd@alpinelinux.org>
|
|
# filezilla needs to be rebuilt when libfilezilla version changes, ABI is not stable
|
|
pkgname=libfilezilla
|
|
pkgver=0.31.0
|
|
pkgrel=0
|
|
pkgdesc="C++ library for filezilla"
|
|
url="https://filezilla-project.org"
|
|
arch="all"
|
|
license="GPL-2.0-or-later"
|
|
makedepends="cppunit-dev gettext gnutls-dev nettle-dev"
|
|
subpackages="$pkgname-dev $pkgname-lang"
|
|
source="https://download.filezilla-project.org/libfilezilla/libfilezilla-$pkgver.tar.bz2"
|
|
|
|
build() {
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--disable-static
|
|
make
|
|
}
|
|
|
|
check() {
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="
|
|
d8be1658c0ece762dc5c87e58f87925579cb2e4b261fea67da407b5d78cfe601a4d1bcb792f00f0f6a41fc7a90a06476a6d2c7a1bf50a85014649116c895e963 libfilezilla-0.31.0.tar.bz2
|
|
"
|