encfs: new port (20200509; replaces my port repo's version)

This commit is contained in:
Steffen Nurpmeso 2022-01-20 01:06:26 +01:00
parent 137f0910d7
commit 8104b25579
3 changed files with 42 additions and 0 deletions

11
encfs/.footprint Normal file
View File

@ -0,0 +1,11 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/encfs
-rwxr-xr-x root/root usr/bin/encfsctl
-rwxr-xr-x root/root usr/bin/encfssh
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/encfs.1.gz
-rw-r--r-- root/root usr/share/man/man1/encfsctl.1.gz
-rw-r--r-- root/root usr/share/man/man1/encfssh.1.gz

5
encfs/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF35TuHdONQRJBZUKCnWJMzibFNnTeIMGmas+PC1cZ3ikuObmwfmxXgpjfH+c8W/K3w5jdL1LzgzpFGX7Bi+eOqAw=
SHA256 (Pkgfile) = 72a0ece32a21a2628caa657893895fc77edb5fc1c40404b2201e332a1a08a59b
SHA256 (.footprint) = 7d5cd8efb10f4f5e82511464bce3283e93abd53f26a8dbfc53a8cbb28e6f1398
SHA256 (encfs-20200509.tar.gz) = 4b4d6b7465114ae74e2c9c6faea0411ea59bcea0f11193db72459e8bb73c16c7

26
encfs/Pkgfile Normal file
View File

@ -0,0 +1,26 @@
# Description: Encrypted filesystems via FUSE
# URL: https://github.com/vgough/encfs
# Maintainer: Steffen Nurpmeso, steffen at sdaoden dot eu
# Depends on: cmake ninja fuse openssl
# xxx Uses internal tinyxml2
name=encfs
version=20200509
gitver=c444f9b9176beea1ad41a7b2e29ca26e709b57f7
release=1
source=(https://github.com/vgough/${name}/archive/${gitver}/${name}-${version}.tar.gz)
build() {
cd ${name}-${gitver}
mkdir build
cd build
cmake .. \
-DCMAKE_INSTALL_PREFIX=/usr \
-DBUILD_UNIT_TESTS=OFF \
-DUSE_INTERNAL_TINYXML=ON \
-DENABLE_NLS=OFF
make MAKEFLAGS="${MAKEFLAGS}" DESTDIR="${PKG}" install
}
# s-sh-mode