diff options
author | kleintux | 2023-10-10 09:27:41 +0200 |
---|---|---|
committer | kleintux | 2023-10-10 09:27:41 +0200 |
commit | 64f85ddddf2f9509f4d8c881592c8b3d4085a231 (patch) | |
tree | ef03fdc955523ef16387bf73a8dd4fae7cf3d25e | |
parent | b1e5b72ca95fca8feeeefc32771c88ad74d2f949 (diff) | |
download | aur-64f85ddddf2f9509f4d8c881592c8b3d4085a231.tar.gz |
update to 0.1.2. guile changed to 3
-rw-r--r-- | .SRCINFO | 10 | ||||
-rw-r--r-- | PKGBUILD | 13 |
2 files changed, 9 insertions, 14 deletions
@@ -1,17 +1,17 @@ pkgbase = shroud pkgdesc = A simple command-line secret manager using GNU Guile - pkgver = 0.1.1 - pkgrel = 2 + pkgver = 0.1.2 + pkgrel = 1 url = https://dthompson.us/projects/shroud.html arch = i686 arch = x86_64 license = GPL3 - depends = guile2.0 + depends = guile depends = gnupg depends = xclip - source = https://files.dthompson.us/shroud/shroud-0.1.1.tar.gz + source = https://files.dthompson.us/shroud/shroud-0.1.2.tar.gz source = fix-version-detect.patch - sha256sums = 9912fc92ae588e1bdb7999daa893aa4b7c3673ea1e0f895799797de11ff483f8 + sha256sums = 37c58fa15cf6a0c0c0af9f96f26311bd62066d398b479cb29adf71b661865ad0 sha256sums = 427dc6f5cc4185c2138ba454d7a822d3f99853e0881cfb3361a9ac8588fe9b18 pkgname = shroud @@ -2,23 +2,18 @@ # Contributor : Andrew Whatson <whatson@gmail.com> pkgname=shroud -pkgver=0.1.1 -pkgrel=2 +pkgver=0.1.2 +pkgrel=1 pkgdesc='A simple command-line secret manager using GNU Guile' arch=('i686' 'x86_64') license=('GPL3') -depends=('guile2.0' 'gnupg' 'xclip') +depends=('guile' 'gnupg' 'xclip') url="https://dthompson.us/projects/shroud.html" source=("https://files.dthompson.us/${pkgname}/${pkgname}-${pkgver}.tar.gz" "fix-version-detect.patch") -sha256sums=('9912fc92ae588e1bdb7999daa893aa4b7c3673ea1e0f895799797de11ff483f8' +sha256sums=('37c58fa15cf6a0c0c0af9f96f26311bd62066d398b479cb29adf71b661865ad0' '427dc6f5cc4185c2138ba454d7a822d3f99853e0881cfb3361a9ac8588fe9b18') -prepare() { - cd ${pkgname}-${pkgver} - patch -p1 -i ../fix-version-detect.patch -} - build() { cd ${pkgname}-${pkgver} GUILE=/usr/bin/guile ./configure --prefix=/usr |