summaryrefslogtreecommitdiff
path: root/repo/core/guile.xibuild
blob: fd65daa0e1c3824cede9fd097ebd43a91f153071 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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="Portable, embeddable Scheme implementation written in C"

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