summaryrefslogtreecommitdiff
path: root/pcr/guile-json3
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2020-07-30 01:19:53 +0200
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2020-07-30 01:20:45 +0200
commit47242fdbfa4a57f3082e2a0720abb62cead0a287 (patch)
treebcb1398b2509e8ae2a71be75dee32ff2dce9f038 /pcr/guile-json3
parent85352f9537e49765f7f44106c24144dbc68fe3dc (diff)
downloadabslibre-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/guile-json3')
-rw-r--r--pcr/guile-json3/PKGBUILD37
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
+}