opt/guile/Pkgfile

23 lines
529 B
Plaintext
Raw Normal View History

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