summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTing-Wei Lan <lantw44@gmail.com>2019-05-17 22:21:14 +0800
committerTing-Wei Lan <lantw44@gmail.com>2019-05-17 22:30:14 +0800
commitb00324ec02f3f0ca76f234e8b1667baa23bf0ec9 (patch)
tree5542690dd66055e7194e639af624f33926d3f2b4
parent636569fd4daad4c1ccab60bd80da87e1f0bbf294 (diff)
downloadAUR4-PKGBUILD-b00324ec02f3f0ca76f234e8b1667baa23bf0ec9.tar.gz
AUR4-PKGBUILD-b00324ec02f3f0ca76f234e8b1667baa23bf0ec9.tar.zst
AUR4-PKGBUILD-b00324ec02f3f0ca76f234e8b1667baa23bf0ec9.zip
guile-json1: 0.1.0 (initial commit)
This packages is forked from guile-json to support Guix, which has not been updated to work with the latest version of guile-json.
-rw-r--r--guile-json1/.SRCINFO17
-rw-r--r--guile-json1/PKGBUILD30
2 files changed, 47 insertions, 0 deletions
diff --git a/guile-json1/.SRCINFO b/guile-json1/.SRCINFO
new file mode 100644
index 0000000..ed07aa0
--- /dev/null
+++ b/guile-json1/.SRCINFO
@@ -0,0 +1,17 @@
+pkgbase = guile-json1
+ pkgdesc = JSON module for Guile (Version 1)
+ pkgver = 1.3.2
+ pkgrel = 1
+ url = https://savannah.nongnu.org/projects/guile-json
+ arch = x86_64
+ arch = i686
+ arch = armv7h
+ license = GPL3
+ depends = guile
+ provides = guile-json=1.3.2
+ conflicts = guile-json
+ source = https://download.savannah.gnu.org/releases/guile-json/guile-json-1.3.2.tar.gz
+ sha256sums = 33f94ea73c478faeca0d56c6d4c12591cb18956476da314df9d1e464c2fade54
+
+pkgname = guile-json1
+
diff --git a/guile-json1/PKGBUILD b/guile-json1/PKGBUILD
new file mode 100644
index 0000000..d028734
--- /dev/null
+++ b/guile-json1/PKGBUILD
@@ -0,0 +1,30 @@
+# Forked from guile-json 1.2.0 PKGBUILD
+
+# Maintainer: lantw44
+# Contributor: holos
+# Contributor: tantalum
+
+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
+}