Package Details: fscrypt-git 0.3.4.0.gf91f8e4-1

Git Clone URL: https://aur.archlinux.org/fscrypt-git.git (read-only, click to copy)
Package Base: fscrypt-git
Description: A tool for managing Linux filesystem encryption
Upstream URL: https://github.com/google/fscrypt
Licenses: Apache
Conflicts: fscrypt
Provides: fscrypt
Submitter: Synchronicity
Maintainer: Synchronicity
Last Packager: Synchronicity
Votes: 7
Popularity: 0.000000
First Submitted: 2017-08-02 04:00 (UTC)
Last Updated: 2023-02-17 03:13 (UTC)

Dependencies (3)

Required by (3)

Sources (2)

Latest Comments

« First ‹ Previous 1 2

egrupled commented on 2017-08-24 14:44 (UTC) (edited on 2017-08-24 14:46 (UTC) by egrupled)

I also prepared PKGBUILD for https://github.com/google/fscryptctl It would be nice if you can add it to your packages # Maintainer: Eric Biggers <ebiggers3 at gmail dot com> pkgname=fscryptctl-git pkgver=0.0.r8.1842856 pkgrel=1 pkgdesc=' Small C tool for Linux filesystem encryption' arch=('x86_64' 'i686') url='https://github.com/google/fscryptctl' license=('Apache') makedepends=('git') depends=('glibc') provides=('fscryptctl') source=('git://github.com/google/fscryptctl.git') sha256sums=('SKIP') pkgver() { cd "${srcdir}/fscryptctl" printf "0.0.r%d.%s\n" $(git rev-list HEAD --count) $(git rev-parse --short HEAD) } build() { cd "${srcdir}/fscryptctl" make } package() { cd "${srcdir}/fscryptctl" install -Dm755 fscryptctl "${pkgdir}/usr/bin/fscryptctl" }

egrupled commented on 2017-08-24 14:19 (UTC)

Hi! There was a major update for fscrypt recently, pam module was added. I updated package section of PKGBUILD to reflect this: package() { cd "${srcdir}/fscrypt" make DESTDIR="${pkgdir}/usr/bin" PAM_MODULE_DIR="${pkgdir}/usr/lib/security" PAM_CONFIG_DIR="${pkgdir}/usr/share/fscrypt/" install install -Dm644 README.md "${pkgdir}/usr/share/fscrypt/README.md" }

egrupled commented on 2017-08-12 11:21 (UTC)

Great! Thank you.

Synchronicity commented on 2017-08-12 03:09 (UTC)

Thanks, I've updated the package.

egrupled commented on 2017-08-10 15:35 (UTC) (edited on 2017-08-10 15:57 (UTC) by egrupled)

This package doesn't build in it's current state on clean system. can't load package: package github.com/google/fscrypt/cmd/fscrypt: cannot find package "github.com/google/fscrypt/cmd/fscrypt" in any of: /usr/lib/go/src/github.com/google/fscrypt/cmd/fscrypt (from $GOROOT) /build/go/src/github.com/google/fscrypt/cmd/fscrypt (from $GOPATH) Here's working PKGBUILD: # Maintainer: Eric Biggers <ebiggers3 at gmail dot com> pkgname=fscrypt-git pkgver=0.1.0.57.g8e234ec pkgrel=1 pkgdesc='A tool for managing Linux filesystem encryption' arch=('x86_64' 'i686') url='https://github.com/google/fscrypt' license=('Apache') makedepends=('git' 'go') depends=('argon2' 'pam') provides=('fscrypt') source=('git://github.com/google/fscrypt.git') sha256sums=('SKIP') pkgver() { cd "${srcdir}/fscrypt" git describe --tags --long | tr - . } prepare() { export GOPATH="$PWD/GO" mkdir -p $GOPATH/src/github.com/google ln -sf $PWD/fscrypt $GOPATH/src/github.com/google/ } build() { export GOPATH="$PWD/GO" cd $GOPATH/src/github.com/google/fscrypt make } package() { cd "${srcdir}/fscrypt" install -Dm755 fscrypt "${pkgdir}/usr/bin/fscrypt" install -Dm644 README.md "${pkgdir}/usr/share/fscrypt/README.md" }