blob: 69b74bef96700fb9f81598b6cc3b312d52c2f437 (
plain)
1 # Description: Embeddable library implementation of Scheme
2 # URL: http://www.gnu.org/software/guile/
3 # Maintainer: Matt Housh, jaeger at morpheus dot net
4 # Depends on: libgmp, libtool, ncurses, readline
5
6 name=guile
7 version=1.8.7
8 release=1
9 source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz \
10 $name-$version-cpp.patch)
11
12 build() {
13 cd $name-$version
14 patch -i $SRC/$name-$version-cpp.patch libguile/guile-snarf-docs.in
15 sed -i -e 's/-Werror//g' configure
16 ./configure --prefix=/usr \
17 --mandir=/usr/man \
18 --with-threads \
19 --with-modules \
20 --enable-deprecation=no
21 make
22 make DESTDIR=$PKG install
23 rm -rf $PKG/usr/share/info
24 }
|