summaryrefslogtreecommitdiff
path: root/repo/system/guile.xibuild
blob: c5413ff1d3d25eae9456f99f61bf7a987f06a41d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

DEPS=(gmp libltdl ncurses texinfo libunistring gc libffi)


PKG_VER=2.2.7
SOURCE=https://ftp.gnu.org/gnu/guile/guile-$PKG_VER.tar.gz
DESC="Portable, embeddable Scheme implementation written in C"

build () {
    ./autogen.sh
    ./configure --prefix=/usr --disable-static
    make
    make DESTDIR=$PKG_DEST install
}