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

Felix Yan felixonmars at archlinux.org
Tue May 5 05:26:49 UTC 2020


    Date: Tuesday, May 5, 2020 @ 05:26:48
  Author: felixonmars
Revision: 624811

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: libfilezilla/repos/community-staging-x86_64/PKGBUILD (from rev 624810, libfilezilla/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2020-05-05 05:26:48 UTC (rev 624811)
@@ -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=2
+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