core/guile/PKGBUILD

30 lines
735 B
Bash

# Maintainer: Francesco Marinucci <franzmari[at]chakra-project[dot]it>
# contributor: almack <almack@chakraos.org>
pkgname=guile
pkgver=2.0.11
pkgrel=4
pkgdesc="Guile is a portable, embeddable Scheme implementation written in C"
url="http://www.gnu.org/software/guile/"
arch=('x86_64')
license=('GPL')
depends=('gmp' 'libltdl' 'ncurses' 'texinfo' 'libunistring' 'gc' 'libffi')
install=guile.install
source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz)
md5sums=('e532c68c6f17822561e3001136635ddd')
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr \
--disable-static \
--disable-silent-rules \
--with-threads
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR="${pkgdir}" install
}