# -*- shell-script -*- # # Contributor: Adrian C. pkgname=ecryptfs-utils pkgver=81 pkgrel=2 arch="i686" pkgdesc="POSIX-compliant stacked cryptographic filesystem for GNU/Linux" url="http://ecryptfs.sourceforge.net" license=('GPL') depends=('keyutils' 'gpgme' 'libgcrypt' 'openssl' 'nss') install=ecryptfs-utils.install source=(http://launchpad.net/ecryptfs/trunk/${pkgver}/+download/${pkgname}_${pkgver}.orig.tar.gz) md5sums=('7a8cf5c1cc638bb21036c2088806fc9d') build() { cd "${srcdir}/${pkgname}-${pkgver}" # ecryptfs-utils 76 #autoreconf -i -v -f # Disable GPG with gpgme 1.2.0 # - /usr/include/gpgme.h:80:2: error: #error GPGME was compiled with _FILE_OFFSET_BITS = 64, # please see the section "Largefile support (LFS)" in the GPGME manual. ./configure --prefix=/usr --enable-pam \ --enable-nss --enable-openssl \ --disable-gpg --disable-gui --disable-pkcs11-helper --disable-tspi make || return 1 make DESTDIR="${pkgdir}" install || return 1 }