[arch-commits] Commit in encfs/repos (2 files)
Jaroslav Lichtblau
jlichtblau at archlinux.org
Sun Mar 8 17:37:43 UTC 2020
Date: Sunday, March 8, 2020 @ 17:37:42
Author: jlichtblau
Revision: 592290
archrelease: copy trunk to community-staging-x86_64
Added:
encfs/repos/community-staging-x86_64/
encfs/repos/community-staging-x86_64/PKGBUILD
(from rev 592289, encfs/trunk/PKGBUILD)
----------+
PKGBUILD | 46 ++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 46 insertions(+)
Copied: encfs/repos/community-staging-x86_64/PKGBUILD (from rev 592289, encfs/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2020-03-08 17:37:42 UTC (rev 592290)
@@ -0,0 +1,46 @@
+# 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.5
+pkgrel=3
+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=('4709f05395ccbad6c0a5b40a4619d60aafe3473b1a79bafb3aa700b1f756fd63'
+ '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
+}
+
+# check() {
+# cd "${srcdir}"/build
+#
+# make test
+# }
+
+package() {
+ cd "${srcdir}"/build
+
+ make DESTDIR="${pkgdir}" install
+}
More information about the arch-commits
mailing list