[arch-commits] Commit in libfilezilla/repos (2 files)
Levente Polyak
anthraxx at archlinux.org
Sun Mar 28 00:36:54 UTC 2021
Date: Sunday, March 28, 2021 @ 00:36:54
Author: anthraxx
Revision: 905858
archrelease: copy trunk to community-staging-x86_64
Added:
libfilezilla/repos/community-staging-x86_64/
libfilezilla/repos/community-staging-x86_64/PKGBUILD
(from rev 905857, libfilezilla/trunk/PKGBUILD)
----------+
PKGBUILD | 41 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 41 insertions(+)
Copied: libfilezilla/repos/community-staging-x86_64/PKGBUILD (from rev 905857, libfilezilla/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2021-03-28 00:36:54 UTC (rev 905858)
@@ -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.27.1
+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=('30db720a8fbc806f498aa94ca9bdbbfa6ef04b4b4853e2c38744c2ba26dc8e34d3b006a057dcb527f6d745bf594ccffbb424f9b59dca6d1cb028b0f13bdd466a')
+b2sums=('5ab11e60a3df1e56275b0a1eeb94a91a5e036306c8d65c95ecdf26737ad5c73782d69e50f81749864293bc827b2502988b45a2268bb8020e685a4c864168af5e')
+
+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