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

Baptiste Jonglez zorun at archlinux.org
Tue Apr 10 22:08:16 UTC 2018


    Date: Tuesday, April 10, 2018 @ 22:08:15
  Author: zorun
Revision: 315644

archrelease: copy trunk to community-staging-x86_64

Added:
  cryfs/repos/community-staging-x86_64/
  cryfs/repos/community-staging-x86_64/PKGBUILD
    (from rev 315643, cryfs/trunk/PKGBUILD)

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

Copied: cryfs/repos/community-staging-x86_64/PKGBUILD (from rev 315643, cryfs/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2018-04-10 22:08:15 UTC (rev 315644)
@@ -0,0 +1,40 @@
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+# Contributor: Andy Weidenbaum <archbaum at gmail.com>
+# Contributor: kaylyn
+# Contributor: Giuseppe Calà <jiveaxe at gmail.com>
+
+pkgname=cryfs
+pkgver=0.9.9
+pkgrel=3
+pkgdesc="Cryptographic filesystem for the cloud"
+arch=(x86_64)
+depends=(crypto++ fuse2 curl)
+makedepends=(cmake python boost)
+url="https://www.cryfs.org"
+license=(LGPL3)
+source=("https://github.com/cryfs/cryfs/releases/download/$pkgver/cryfs-$pkgver.tar.xz"{,.asc})
+sha256sums=('aa8d90bb4c821cf8347f0f4cbc5f68a1e0f4eb461ffd8f1ee093c4d37eac2908'
+            'SKIP')
+validpgpkeys=(C3111FE656732704EF6DF059017DC932549E65B2) # CryFS Team <messmer at cryfs.org>
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  cmake .. \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DBUILD_TESTING=OFF \
+    -DCRYFS_UPDATE_CHECKS=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  install -Dm 644 "$srcdir"/LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
+  install -Dm 644 "$srcdir"/README.md -t "$pkgdir"/usr/share/doc/$pkgname
+}



More information about the arch-commits mailing list