@fifr, thanks for bringing this to my attention. Google code seems to have changed the structure and I've updated to accomodate that
Search Criteria
Package Details: pam_encfs 0.1.4.4-4
Git Clone URL: | https://aur.archlinux.org/pam_encfs.git (read-only) |
---|---|
Package Base: | pam_encfs |
Description: | A module to auto-mount encfs directories on login |
Upstream URL: | http://code.google.com/p/pam-encfs/ |
Keywords: | encryption |
Licenses: | |
Submitter: | guital |
Maintainer: | ainola |
Last Packager: | ainola |
Votes: | 28 |
Popularity: | 0.000213 |
First Submitted: | 2005-11-19 18:56 |
Last Updated: | 2016-09-11 15:43 |
Latest Comments
fifr commented on 2016-09-12 07:02
ainola commented on 2016-09-11 15:44
fifr commented on 2016-09-11 09:58
The source url
http://pam-encfs.googlecode.com/files/pam_encfs-0.1.4.4.tar.gz
seems to be down. Is there an alternative source?
mgmartins commented on 2015-03-05 07:13
@Brianmce, try this PKGBUILD:
# Contributor: Guillem Rieu <guillemr@gmx.net> [0/293]
pkgname=pam_encfs
pkgver=0.1.4.4
pkgrel=2
pkgdesc="pam_encfs is a module to auto mount encfs dir on login"
url="http://code.google.com/p/pam-encfs/"
arch=(i686 x86_64)
depends=('encfs')
backup=('etc/security/pam_encfs.conf')
license="GPL"
source=(http://pam-encfs.googlecode.com/files/$pkgname-$pkgver.tar.gz)
md5sums=('20d10fa842e968a224af542db7e10d21')
build() {
cd $srcdir/$pkgname-$pkgver
make || return 1
}
package() {
cd $srcdir/$pkgname-$pkgver
make DESTDIR=${pkgdir}/usr install || return 1
mkdir -p $pkgdir/etc/security
cp pam_encfs.conf $pkgdir/etc/security
}
mgmartins commented on 2015-03-05 07:13
Try this PKGBUILD:
pkgname=pam_encfs
pkgver=0.1.4.4
pkgrel=2
pkgdesc="pam_encfs is a module to auto mount encfs dir on login"
url="http://code.google.com/p/pam-encfs/"
arch=(i686 x86_64)
depends=('encfs')
backup=('etc/security/pam_encfs.conf')
license="GPL"
source=(http://pam-encfs.googlecode.com/files/$pkgname-$pkgver.tar.gz)
md5sums=('20d10fa842e968a224af542db7e10d21')
build() {
cd $srcdir/$pkgname-$pkgver
make || return 1
}
package() {
cd $srcdir/$pkgname-$pkgver
make DESTDIR=${pkgdir}/usr install || return 1
mkdir -p $pkgdir/etc/security
cp pam_encfs.conf $pkgdir/etc/security
}
Brianmce commented on 2015-01-08 17:04
The PKGBUILD seems to be missing a package() function.
guital commented on 2012-05-08 02:47
@zosodk69: Done, you can adopt it :)
zosodk69 commented on 2012-05-08 02:17
I suppose this is a low maintenance package I could handle ;) If you orphan I'll adopt.
guital commented on 2012-05-07 18:31
@zozo, @zosodk69: Thanks for your feedback on the matter, I've just updated the PKGBUILD.
By the way, I don't use pam_encfs anymore, is any of you interested in adopting the package?
zosodk69 commented on 2012-05-07 14:23
install is now located under /usr/bin so the sed line in build() is no longer required. Also, DESTDIR needs to be ${pkgdir}/usr.
Here's my build function:
build() {
cd $srcdir/$pkgname-$pkgver
make || return 1
make DESTDIR=${pkgdir}/usr install || return 1
mkdir -p $pkgdir/etc/security
cp pam_encfs.conf $pkgdir/etc/security
}
noplomplom commented on 2012-05-05 20:04
Compilation error:
"make: /bin/install: Command not found".
Problem solved by changing the PKGBUILD line
"sed -i 's@/usr/bin/install@/bin/install@g' Makefile"
into
"sed -i 's@/usr/bin/install@/usr/bin/install@g' Makefile".
guital commented on 2011-01-23 22:31
Updated to 1.4.4
guital commented on 2011-01-23 22:31
Updated to 1.4.4
guital commented on 2011-01-23 22:31
Updated to 1.4.4
crocowhile commented on 2011-01-23 11:40
Hi can you please update the package build to 1.4.4? thanks
@ainola: thanks a lot