[arch-commits] Commit in libfilezilla/repos (2 files)

Levente Polyak anthraxx at archlinux.org
Thu Jan 2 20:58:41 UTC 2020


    Date: Thursday, January 2, 2020 @ 20:58:41
  Author: anthraxx
Revision: 546658

archrelease: copy trunk to community-staging-x86_64

Added:
  libfilezilla/repos/community-staging-x86_64/
  libfilezilla/repos/community-staging-x86_64/PKGBUILD
    (from rev 546657, libfilezilla/trunk/PKGBUILD)

----------+
 PKGBUILD |   40 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

Copied: libfilezilla/repos/community-staging-x86_64/PKGBUILD (from rev 546657, libfilezilla/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2020-01-02 20:58:41 UTC (rev 546658)
@@ -0,0 +1,40 @@
+# 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.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' 'gnutls')
+makedepends=(clang)
+checkdepends=('cppunit')
+provides=('libfilezilla.so')
+source=(https://download.filezilla-project.org/libfilezilla/libfilezilla-${pkgver}.tar.bz2)
+sha512sums=('264a3a110dc4e99f6b993479be9f25cf831297899c699d73e5ad5a403e11ff09fa9ab062a420a0111e78f7d6e68e92fa461c161c8fd7c274cf227ef45f618849')
+
+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