summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--guile-json/.SRCINFO12
-rw-r--r--guile-json/PKGBUILD29
2 files changed, 41 insertions, 0 deletions
diff --git a/guile-json/.SRCINFO b/guile-json/.SRCINFO
new file mode 100644
index 0000000..20a758f
--- /dev/null
+++ b/guile-json/.SRCINFO
@@ -0,0 +1,12 @@
+pkgbase = guile-json
+ pkgdesc = JSON module for Guile
+ pkgver = 3.3.0
+ pkgrel = 2
+ url = https://github.com/aconchillo/guile-json
+ arch = any
+ license = LGPL
+ source = http://download.savannah.gnu.org/releases/guile-json/guile-json-3.3.0.tar.gz
+ sha256sums = ceb7357308d75a9c49dabbddaecf60c9731eda3512b9275a79bb508f628c783d
+
+pkgname = guile-json
+
diff --git a/guile-json/PKGBUILD b/guile-json/PKGBUILD
new file mode 100644
index 0000000..79e7347
--- /dev/null
+++ b/guile-json/PKGBUILD
@@ -0,0 +1,29 @@
+# Contributor: holos
+# Contributor: tantalum
+# Maintainer: Thomas Koller-Cherek <tk120 at protonmail dot com>
+
+pkgname=guile-json
+pkgrel=2
+pkgver=3.3.0
+pkgdesc='JSON module for Guile'
+url="https://github.com/aconchillo/guile-json"
+arch=('any')
+license=('LGPL')
+source=("http://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.tar.gz")
+sha256sums=('ceb7357308d75a9c49dabbddaecf60c9731eda3512b9275a79bb508f628c783d')
+
+build() {
+ cd "$pkgname-$pkgver"
+ ./configure --prefix=/usr
+ make
+}
+
+check(){
+ cd "$pkgname-$pkgver"
+ make check
+}
+
+package() {
+ cd "$pkgname-$pkgver"
+ make DESTDIR="$pkgdir" install
+}