vp-build/srcpkgs/encfs/template

29 lines
835 B
Bash

# Template file for 'encfs'
pkgname=encfs
version=1.9.5
revision=5
build_style=cmake
hostmakedepends="gettext pkg-config perl"
makedepends="fuse-devel openssl-devel gettext-devel"
depends="perl" # for encfssh
short_desc="Encrypted filesystem in user-space"
maintainer="Orphaned <orphan@voidlinux.org>"
license="GPL-2.0-or-later, LGPL-3.0-or-later"
homepage="http://www.arg0.net/encfs"
distfiles="https://github.com/vgough/encfs/releases/download/v${version}/${pkgname}-${version}.tar.gz"
checksum=4709f05395ccbad6c0a5b40a4619d60aafe3473b1a79bafb3aa700b1f756fd63
# Can't run test programs when cross compiling
if [ "$CROSS_BUILD" ]; then
configure_args="-DBUILD_UNIT_TESTS=0"
fi
if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then
makedepends+=" libatomic-devel"
LDFLAGS+=" -latomic"
fi
post_install() {
chmod +x ${DESTDIR}/usr/bin/encfssh
}