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

Baptiste Jonglez zorun at archlinux.org
Sat Feb 24 09:08:15 UTC 2018


    Date: Saturday, February 24, 2018 @ 09:08:14
  Author: zorun
Revision: 297616

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: cryfs/repos/community-staging-x86_64/PKGBUILD (from rev 297615, cryfs/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2018-02-24 09:08:14 UTC (rev 297616)
@@ -0,0 +1,41 @@
+# 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=2
+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 \
+    -DCMAKE_BUILD_TYPE=Release \
+    -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