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

Jaroslav Lichtblau jlichtblau at archlinux.org
Mon Dec 11 19:40:48 UTC 2017


    Date: Monday, December 11, 2017 @ 19:40:47
  Author: jlichtblau
Revision: 273853

archrelease: copy trunk to community-staging-x86_64

Added:
  encfs/repos/community-staging-x86_64/
  encfs/repos/community-staging-x86_64/PKGBUILD
    (from rev 273852, encfs/trunk/PKGBUILD)

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

Copied: encfs/repos/community-staging-x86_64/PKGBUILD (from rev 273852, encfs/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2017-12-11 19:40:47 UTC (rev 273853)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau <svetlemodry at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+# Contributor: Jaroslaw Swierczynski <swiergot at aur.archlinux.org>
+# Contributor: Sven Kauber, <celeon at gmail.com>
+# Contributor: Daniel J Griffiths <ghost1227 at archlinux.us>
+
+pkgname=encfs
+pkgver=1.9.2
+pkgrel=2
+pkgdesc='Encrypted filesystem in user-space'
+arch=('x86_64')
+url='https://vgough.github.io/encfs/'
+license=('LGPL')
+depends=('openssl' 'fuse2' 'tinyxml2')
+makedepends=('cmake')
+source=(https://github.com/vgough/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz{,.asc})
+# validpgpkeys=('E583187B2E26D6EF8BF4556333C65E29813C14DF') # Valient Gough
+validpgpkeys=('FFF3E01444FED7C316A3545A895F5BC123A02740') # Jakob Unterwurzacher <jakobunt at gmail.com>
+sha256sums=('cd9e972cd9565cdc26473c86d2c77c98de31fc6f604fa7d149dd5d6e35d46eaa'
+            'SKIP')
+
+build() {
+  cd "${srcdir}"
+
+  mkdir build
+  cd build
+
+  cmake ../$pkgname-$pkgver \
+      -DUSE_INTERNAL_TINYXML=OFF \
+      -DINSTALL_LIBENCFS=ON \
+      -DBUILD_SHARED_LIBS=ON \
+      -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+# https://github.com/vgough/encfs/issues/358
+# check() {
+#   cd "${srcdir}"/build
+#
+#   make test
+# }
+
+package() {
+  cd "${srcdir}"/build
+
+  make DESTDIR="${pkgdir}" install
+}



More information about the arch-commits mailing list