2006-02-23 15:26:10 +00:00
|
|
|
# Description: embeddable library implementation of Scheme
|
|
|
|
# URL: http://www.gnu.org/software/guile/
|
|
|
|
# Maintainer: Matt Housh, jaeger at morpheus dot net
|
2006-03-29 13:45:10 +00:00
|
|
|
# Depends on: libgmp
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
name=guile
|
2006-12-16 14:19:41 -06:00
|
|
|
version=1.8.1
|
2007-02-16 10:59:33 -06:00
|
|
|
release=2
|
|
|
|
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz \
|
|
|
|
$name-1.8-rational.patch)
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
build() {
|
2007-02-16 10:59:33 -06:00
|
|
|
cd $name-$version
|
|
|
|
patch -p0 -i $SRC/$name-1.8-rational.patch
|
|
|
|
./configure --prefix=/usr \
|
2006-02-23 15:26:10 +00:00
|
|
|
--with-threads \
|
|
|
|
--with-modules \
|
|
|
|
--enable-deprecation=no
|
2007-02-16 10:59:33 -06:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -rf $PKG/usr/share/info
|
2006-02-23 15:26:10 +00:00
|
|
|
}
|