summaryrefslogtreecommitdiff
path: root/pcr/guile-json1
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2019-06-21 00:40:31 +0200
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2019-06-21 00:40:35 +0200
commit2029d277c59a302f27e0f5d7ad16a1345200772c (patch)
treee5317929651c55420d04cf0ca01009dc5783bcc0 /pcr/guile-json1
parentf274cb7b28f927359a26b4fdd737af58f7acb1fe (diff)
downloadabslibre-2029d277c59a302f27e0f5d7ad16a1345200772c.tar.gz
abslibre-2029d277c59a302f27e0f5d7ad16a1345200772c.tar.bz2
abslibre-2029d277c59a302f27e0f5d7ad16a1345200772c.zip
pcr: Add guile-json1 (dependency of guix 1.0.1)
This was build tested on i686. Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Diffstat (limited to 'pcr/guile-json1')
-rw-r--r--pcr/guile-json1/PKGBUILD33
1 files changed, 33 insertions, 0 deletions
diff --git a/pcr/guile-json1/PKGBUILD b/pcr/guile-json1/PKGBUILD
new file mode 100644
index 000000000..8852b5c39
--- /dev/null
+++ b/pcr/guile-json1/PKGBUILD
@@ -0,0 +1,33 @@
+# Forked from guile-json 1.2.0 PKGBUILD
+
+# Maintainer (AUR): lantw44
+# Contributor (AUR): holos
+# Contributor (AUR): tantalum
+
+# parabola changes and rationale:
+# no changes.
+
+pkgname=guile-json1
+_pkgname=guile-json
+pkgver=1.3.2
+pkgrel=1
+pkgdesc='JSON module for Guile (Version 1)'
+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=('33f94ea73c478faeca0d56c6d4c12591cb18956476da314df9d1e464c2fade54')
+
+build() {
+ cd "$_pkgname-$pkgver"
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "$_pkgname-$pkgver"
+ make DESTDIR="$pkgdir" install
+}