summaryrefslogtreecommitdiff
path: root/repo/core/guile.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/core/guile.xibuild')
-rw-r--r--repo/core/guile.xibuild13
1 files changed, 13 insertions, 0 deletions
diff --git a/repo/core/guile.xibuild b/repo/core/guile.xibuild
new file mode 100644
index 0000000..1d9784a
--- /dev/null
+++ b/repo/core/guile.xibuild
@@ -0,0 +1,13 @@
+#!/bin/bash
+
+DEPS=(gmp libltdl ncurses texinfo libunistring gc libffi)
+
+SOURCE=https://ftp.gnu.org/gnu/guile/guile-2.2.7.tar.gz
+DESC="The free Bourne Again Shell"
+
+build () {
+ ./autogen.sh
+ ./configure --prefix=/usr --disable-static
+ make
+ make DESTDIR=$PKG_DEST install
+}