diff options
-rw-r--r-- | pcr/guile-gcrypt/PKGBUILD | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/pcr/guile-gcrypt/PKGBUILD b/pcr/guile-gcrypt/PKGBUILD index 02829d86d..742de1d68 100644 --- a/pcr/guile-gcrypt/PKGBUILD +++ b/pcr/guile-gcrypt/PKGBUILD @@ -1,22 +1,23 @@ -# Maintainer (AUR): Joe Hillenbrand <joehillen@gmail.com> +# 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.1.0 +pkgver=0.2.1 pkgrel=1 pkgdesc='Guile bindings for libgcrypt' arch=('x86_64' 'i686' 'armv7h') url="https://notabug.org/cwebber/guile-gcrypt" -license=('LGPL3') +license=('GPL3') depends=('guile' 'libgcrypt') source=("https://notabug.org/cwebber/${pkgname}/archive/v${pkgver}.tar.gz") -sha256sums=('63969929bb100ef29f4d050384aba565cd75e6e746168aa9dcab2e3b5d3c39be') +sha256sums=('8de1bbf5e952e15cd6b03e26701fbfa0c2266d975212543a41c9aa3a01f741e2') build() { cd "${srcdir}/${pkgname}" - autoreconf -fi + ./bootstrap.sh ./configure --prefix=/usr make } |