summaryrefslogtreecommitdiff
path: root/pcr/guile-json1
diff options
context:
space:
mode:
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
+}