Date: Thursday, January 2, 2020 @ 20:58:36 Author: anthraxx Revision: 546657
upgpkg: libfilezilla 0.19.3-1 Modified: libfilezilla/trunk/PKGBUILD ----------+ PKGBUILD | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2020-01-02 20:46:35 UTC (rev 546656) +++ PKGBUILD 2020-01-02 20:58:36 UTC (rev 546657) @@ -1,20 +1,23 @@ -# Maintainer: Florian Pritz <[email protected]> +# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org> +# Contributor: Florian Pritz <[email protected]> # Contributor: Martchus <[email protected]> pkgname=libfilezilla -pkgver=0.18.2 +pkgver=0.19.3 pkgrel=1 pkgdesc="Small and modern C++ library, offering some basic functionality to build high-performing, platform-independent programs" arch=('x86_64') url="https://lib.filezilla-project.org/" license=('GPL') -depends=('gcc-libs' 'nettle') +depends=('gcc-libs' 'nettle' 'gnutls') makedepends=(clang) checkdepends=('cppunit') -source=("https://download.filezilla-project.org/libfilezilla/libfilezilla-$pkgver.tar.bz2") +provides=('libfilezilla.so') +source=(https://download.filezilla-project.org/libfilezilla/libfilezilla-${pkgver}.tar.bz2) +sha512sums=('264a3a110dc4e99f6b993479be9f25cf831297899c699d73e5ad5a403e11ff09fa9ab062a420a0111e78f7d6e68e92fa461c161c8fd7c274cf227ef45f618849') build() { - cd "${srcdir}/$pkgname-$pkgver" + cd ${pkgname}-${pkgver} export CXX=clang++ export CC=clang ./configure \ @@ -24,13 +27,14 @@ } check() { - cd "${srcdir}/$pkgname-$pkgver" + cd ${pkgname}-${pkgver} # LANG needed to fix string_test::test_conversion2 LANG=en_US.UTF-8 make check } package() { - cd "${srcdir}/$pkgname-$pkgver" + cd ${pkgname}-${pkgver} make DESTDIR="${pkgdir}" install } -sha512sums=('6f165a008ea8e3090554070685ef042b5304a8e7fdeb9f16c81a01c00b5fcb3d4acd356cfaf3fc1189c04db0b726dd005c592f6c7c6b06a527d8b82e7890257b') + +# vim: ts=2 sw=2 et:
