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

MAKEDEPS="make "
DEPS="gmp libtool ncurses texinfo libunistring gc libffi"


PKG_VER=3.0.8
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
}