blob: fb513d53e6cf618aaf83743ae2547cb40709bb6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Maintainer: Andrew Whatson <whatson@gmail.com>
pkgname=shroud
pkgver=0.1.1
pkgrel=1
pkgdesc='A simple command-line secret manager using GNU Guile'
arch=('i686' 'x86_64')
license=('GPL3')
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'
'427dc6f5cc4185c2138ba454d7a822d3f99853e0881cfb3361a9ac8588fe9b18')
prepare() {
cd ${pkgname}-${pkgver}
patch -p1 -i ../fix-version-detect.patch
}
build() {
cd ${pkgname}-${pkgver}
GUILE=/usr/bin/guile ./configure --prefix=/usr
make
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR="${pkgdir}" install
}
|