diff options
-rw-r--r-- | dist/archlinux/stable/PKGBUILD | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/dist/archlinux/stable/PKGBUILD b/dist/archlinux/stable/PKGBUILD index 77ea7d8..1f3742e 100644 --- a/dist/archlinux/stable/PKGBUILD +++ b/dist/archlinux/stable/PKGBUILD @@ -1,8 +1,8 @@ # Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org> pkgname=file2key -pkgver=1 -pkgrel=2 +pkgver=2 +pkgrel=1 pkgdesc="A simple command that generates a key from a file and a passphrase" arch=(i686 x86_64) url="https://github.com/maandree/file2key" @@ -10,12 +10,11 @@ license=('GPL3') depends=(glibc libpassphrase) makedepends=(make coreutils gcc glibc libpassphrase) source=($url/archive/$pkgver.tar.gz) -sha256sums=(d2cba060a2d361f7de969f2281f68c815f2c5649bade2bfef0eb9427fd61f7b0) +sha256sums=(aa8d50ade18a77a5f721d2c843e089abf5a6ee9aa163821c564db19e0de75ac8) build() { cd "$srcdir/$pkgname-$pkgver" - export LDFLAGS="${LDFLAGS/,--as-needed/}" make PREFIX=/usr } |