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

MAKEDEPS=(make )
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
}

package () {
    make DESTDIR=$PKG_DEST install
}