blob: 759c2c2abc6e9cd40116b5461b44212e85682e47 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 | #!/bin/bash
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
}
 |