[arch-commits] Commit in libfilezilla/repos (2 files)
Levente Polyak
anthraxx at archlinux.org
Thu May 13 12:27:31 UTC 2021
Date: Thursday, May 13, 2021 @ 12:27:30
Author: anthraxx
Revision: 933163
archrelease: copy trunk to community-staging-x86_64
Added:
libfilezilla/repos/community-staging-x86_64/
libfilezilla/repos/community-staging-x86_64/PKGBUILD
(from rev 933162, libfilezilla/trunk/PKGBUILD)
----------+
PKGBUILD | 41 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 41 insertions(+)
Copied: libfilezilla/repos/community-staging-x86_64/PKGBUILD (from rev 933162, libfilezilla/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2021-05-13 12:27:30 UTC (rev 933163)
@@ -0,0 +1,41 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Contributor: Florian Pritz <bluewind at xinu.at>
+# Contributor: Martchus <martchus at gmx.net>
+
+pkgname=libfilezilla
+pkgver=0.28.0
+pkgrel=1
+pkgdesc='Small and modern C++ library, offering some basic functionality to build high-performing, platform-independent programs'
+url='https://lib.filezilla-project.org/'
+arch=('x86_64')
+license=('GPL')
+depends=('glibc' 'gcc-libs' 'nettle' 'gnutls' 'libnettle.so' 'libhogweed.so')
+makedepends=(clang)
+checkdepends=('cppunit')
+provides=('libfilezilla.so')
+source=(https://download.filezilla-project.org/libfilezilla/libfilezilla-${pkgver}.tar.bz2)
+sha512sums=('e14bc3d5d20c62f0910ab55aa6466590a0d55aedf534e7eb67481a65b372c62fd0015506a1acdc476811aa2c0ce7561f30e79a10f994dfd98014e4ed4b4f471e')
+b2sums=('579881b1bf127f709cdfda61efb71cce3df741152124b74a2f7d718e43d7d71ce678ec6ba10ff61926b275d5b9e69f8df0f9741a0ba1e9b5ff2c51d35472d10a')
+
+build() {
+ cd ${pkgname}-${pkgver}
+ export CXX=clang++
+ export CC=clang
+ ./configure \
+ --prefix=/usr \
+ --disable-static
+ make
+}
+
+check() {
+ cd ${pkgname}-${pkgver}
+ # LANG needed to fix string_test::test_conversion2
+ LANG=en_US.UTF-8 make check
+}
+
+package() {
+ cd ${pkgname}-${pkgver}
+ make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:
More information about the arch-commits
mailing list