summaryrefslogtreecommitdiff
path: root/pcr/guile-json
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2016-02-21 15:10:30 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2016-02-21 22:56:14 -0300
commit92fd05db36899a777ccfe4fb0f625730e3c769fc (patch)
tree182985465994863bcbb47193ab293b94e86db169 /pcr/guile-json
parent771a23c5497630ed727c06aa619dc4c82751f89d (diff)
guile-json: add package to [pcr] -> https://labs.parabola.nu/issues/936
Diffstat (limited to 'pcr/guile-json')
-rw-r--r--pcr/guile-json/PKGBUILD23
1 files changed, 23 insertions, 0 deletions
diff --git a/pcr/guile-json/PKGBUILD b/pcr/guile-json/PKGBUILD
new file mode 100644
index 000000000..cf38473e5
--- /dev/null
+++ b/pcr/guile-json/PKGBUILD
@@ -0,0 +1,23 @@
+# Maintainer (Arch): holos
+# Contributor (Arch): tantalum
+
+pkgname=guile-json
+pkgrel=1
+pkgver=0.4.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=('0696062439ceb00d1026e9c352e8a6fac22de6fd6e38a9f5e7cc139ec511066c')
+
+build() {
+ cd "$pkgname-$pkgver"
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "$pkgname-$pkgver"
+ make DESTDIR="$pkgdir" install
+}