diff options
author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2020-07-30 01:19:53 +0200 |
---|---|---|
committer | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2020-07-30 01:20:45 +0200 |
commit | 47242fdbfa4a57f3082e2a0720abb62cead0a287 (patch) | |
tree | bcb1398b2509e8ae2a71be75dee32ff2dce9f038 /pcr | |
parent | 85352f9537e49765f7f44106c24144dbc68fe3dc (diff) | |
download | abslibre-47242fdbfa4a57f3082e2a0720abb62cead0a287.tar.gz abslibre-47242fdbfa4a57f3082e2a0720abb62cead0a287.tar.bz2 abslibre-47242fdbfa4a57f3082e2a0720abb62cead0a287.zip |
pcr: add guile-json3
This is a new dependency of Guix.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Diffstat (limited to 'pcr')
-rw-r--r-- | pcr/guile-json3/PKGBUILD | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/pcr/guile-json3/PKGBUILD b/pcr/guile-json3/PKGBUILD new file mode 100644 index 000000000..9ab1ba741 --- /dev/null +++ b/pcr/guile-json3/PKGBUILD @@ -0,0 +1,37 @@ +# Maintainer (AUR): Ting-Wei Lan <lantw44 at gmail dot com> +# Contributor (AUR): Thomas Koller-Cherek <tk120 at protonmail dot com> +# Contributor (AUR): holos +# Contributor (AUR): tantalum + +# parabola changes and rationale: +# no changes. + +pkgname=guile-json3 +_pkgname=guile-json +pkgver=3.4.0 +pkgrel=1 +pkgdesc='JSON module for Guile (Version 3)' +arch=('x86_64' 'i686' 'armv7h') +url='https://savannah.nongnu.org/projects/guile-json' +license=('GPL3') +depends=('guile') +provides=("$_pkgname=$pkgver") +conflicts=("$_pkgname") +source=("https://download.savannah.gnu.org/releases/$_pkgname/$_pkgname-$pkgver.tar.gz") +sha256sums=('716aad1efd445c68224381ebaff0bccf1d9f67afc84af470b0886364af9f5f76') + +build() { + cd "$_pkgname-$pkgver" + ./configure --prefix=/usr + make +} + +check(){ + cd "$_pkgname-$pkgver" + make check +} + +package() { + cd "$_pkgname-$pkgver" + make DESTDIR="$pkgdir" install +} |