summaryrefslogtreecommitdiff
path: root/repo/guile/guile.xibuild
blob: 5873f37b785f741792d8443a9b77aba0d36f3db3 (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=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
}