summaryrefslogtreecommitdiff
path: root/repo/core/guile.xibuild
blob: 1d9784a4cb41228877fd0f3af839b14fed9bce75 (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="The free Bourne Again Shell"

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