diff options
Diffstat (limited to 'extra/guile/PKGBUILD')
-rw-r--r-- | extra/guile/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/extra/guile/PKGBUILD b/extra/guile/PKGBUILD new file mode 100644 index 000000000..54e90fd83 --- /dev/null +++ b/extra/guile/PKGBUILD @@ -0,0 +1,29 @@ +# $Id: PKGBUILD 109127 2011-02-06 11:24:26Z andyrtr $ +# Contributor: Tom Newsom <Jeepster@gmx.co.uk> +# Maintainer: Jan de Groot <jgc@archlinux.org> + +pkgname=guile +pkgver=1.8.8 +pkgrel=1 +pkgdesc="a portable, embeddable Scheme implementation written in C" +url="http://www.gnu.org/software/guile/" +arch=(i686 x86_64 'mips64el') +license=('GPL') +depends=('gmp' 'libtool' 'ncurses>=5.7' 'texinfo') +install=guile.install +source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz) +options=('!libtool') +md5sums=('18661a8fdfef13e2fcb7651720aa53f3') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr \ + --disable-static \ + --disable-error-on-warning + make LDFLAGS+="-lpthread" +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} |