updated on Tue Jan 17 12:00:36 UTC 2012
[aur-mirror.git] / guile-devel / PKGBUILD
blobf0fb1563bdd3ffb65736f02f9b04c3f7a35eb605
1 # Maintainer: Patrick McCarty <pnorcks at gmail dot com>
2 # Contributor: Emmanuel 'guinness' Boudreault
4 pkgname=guile-devel
5 pkgver=2.0.3
6 pkgrel=1
7 pkgdesc="Guile is a portable, embeddable Scheme implementation written in C"
8 url="http://www.gnu.org/software/guile/"
9 arch=('i686' 'x86_64')
10 license=('GPL')
11 depends=('gmp>=4.3.1' 'libtool' 'ncurses>=5.7' 'texinfo'
12          'libunistring' 'gc' 'libffi')
13 conflicts=('guile' 'guile-git')
14 provides=("guile=$pkgver")
15 install=guile.install
16 options=('!libtool')
17 source=(ftp://ftp.gnu.org/pub/gnu/guile/guile-${pkgver}.tar.gz)
18 sha256sums=('a53b21159befe3e89bbaca71e9e62cf00af0f49fcca297c407944b988d59eb08')
20 build() {
21   cd "${srcdir}/guile-${pkgver}"
23   ./configure --prefix=/usr
24   make LDFLAGS+="-lpthread"
27 package() {
28   cd "${srcdir}/guile-${pkgver}"
29   make DESTDIR="${pkgdir}" install
32 # vim:set ts=2 sw=2 et: