# Description: embeddable library implementation of Scheme
# URL: http://www.gnu.org/software/guile/
# Maintainer: Matt Housh, jaeger at morpheus dot net

name=guile
version=1.6.7
release=1
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz)

build() {
    cd $name-$version
    ./configure --prefix=/usr \
		--with-threads \
		--with-modules \
		--enable-deprecation=no
    make
    make DESTDIR=$PKG install
    rm -rf $PKG/usr/info
}
