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

Felix Yan felixonmars at gemini.archlinux.org
Fri Dec 17 06:27:26 UTC 2021


    Date: Friday, December 17, 2021 @ 06:27:26
  Author: felixonmars
Revision: 1075834

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: cryfs/repos/community-staging-x86_64/PKGBUILD (from rev 1075833, cryfs/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2021-12-17 06:27:26 UTC (rev 1075834)
@@ -0,0 +1,38 @@
+# 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.11.0
+pkgrel=2
+pkgdesc='Cryptographic filesystem for the cloud'
+arch=(x86_64)
+depends=(fuse2 curl spdlog fmt boost-libs)
+makedepends=(cmake python boost range-v3)
+url='https://www.cryfs.org'
+license=(LGPL3)
+source=(https://github.com/cryfs/cryfs/releases/download/$pkgver/cryfs-$pkgver.tar.xz{,.asc})
+sha256sums=('5583f84f3fcbd4bdbdcc9bfe4bb10971b2fca80a67b539b340556b5de482b737'
+            'SKIP')
+validpgpkeys=(5D5EC7BC6F1443EC2AF7177A9E6C996C991D25E1) # CryFS Team <messmer at cryfs.org>
+
+prepare() {
+  sed -e '/Release/d' -i doc/CMakeLists.txt # Install man page also with dafault build type
+}
+
+build() {
+  cmake -B build -S . \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DBUILD_TESTING=OFF \
+    -DCRYFS_UPDATE_CHECKS=OFF \
+    -DDEPENDENCY_CONFIG="cmake-utils/DependenciesFromLocalSystem.cmake"
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+  install -Dm 644 LICENSE.txt -t "$pkgdir"/usr/share/licenses/$pkgname
+  install -Dm 644 README.md -t "$pkgdir"/usr/share/doc/$pkgname
+}



More information about the arch-commits mailing list