blob: 742de1d6844715e91db1f8452681b4acb8db1eee (
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
30
31
32
33
|
# Maintainer (AUR): Ting-Wei Lan <lantw44@gmail.com>
# Contributor (AUR): Joe Hillenbrand <joehillen@gmail.com>
# parabola changes and rationale:
# no changes.
pkgname=guile-gcrypt
pkgver=0.2.1
pkgrel=1
pkgdesc='Guile bindings for libgcrypt'
arch=('x86_64' 'i686' 'armv7h')
url="https://notabug.org/cwebber/guile-gcrypt"
license=('GPL3')
depends=('guile' 'libgcrypt')
source=("https://notabug.org/cwebber/${pkgname}/archive/v${pkgver}.tar.gz")
sha256sums=('8de1bbf5e952e15cd6b03e26701fbfa0c2266d975212543a41c9aa3a01f741e2')
build() {
cd "${srcdir}/${pkgname}"
./bootstrap.sh
./configure --prefix=/usr
make
}
check() {
cd "${srcdir}/${pkgname}"
make check
}
package() {
cd "${srcdir}/${pkgname}"
make DESTDIR="${pkgdir}" install
}
|