summaryrefslogtreecommitdiff
path: root/~brendan
diff options
context:
space:
mode:
authorBrendan Tildesley <brendan.tildesley@gmail.com>2012-06-03 14:08:36 +1000
committerBrendan Tildesley <brendan.tildesley@gmail.com>2012-06-03 14:08:36 +1000
commit986a9406becb9c0aafb51cc2eaf1ff4f26867c15 (patch)
treeede5966b01b34285d0b7976618e8769faf4eb571 /~brendan
parent7efff15fefc9efebec907155cc63591902e0a9e8 (diff)
guile 2.0.5 for ~brendan repo
Diffstat (limited to '~brendan')
-rw-r--r--~brendan/guile/PKGBUILD37
1 files changed, 21 insertions, 16 deletions
diff --git a/~brendan/guile/PKGBUILD b/~brendan/guile/PKGBUILD
index c6297290a..af8827563 100644
--- a/~brendan/guile/PKGBUILD
+++ b/~brendan/guile/PKGBUILD
@@ -1,27 +1,32 @@
-# Maintainer: Brendan Tildesley <brendan.tildesley@gmail.com>
+# Maintainer: Patrick McCarty <pnorcks at gmail dot com>
+# Contributor: Emmanuel 'guinness' Boudreault
+# Parabola Maintainer: Brendan Tildesley (brendyn)
+#
+# This is `guile-devel' from AUR, with very little changes.
pkgname=guile
-pkgver=2.0.3
+pkgver=2.0.5
pkgrel=1
-pkgdesc="GNU Ubiquitous Intelligent Language for Extensions - portable Scheme implementation written in C."
+pkgdesc="GNU Ubiquitous Intelligent Language for Extensions - a portable, embeddable Scheme implementation written in C"
url="http://www.gnu.org/software/guile/"
-license=('GPL3' 'LGPL3')
-arch=(i686 x86_64 mips64el)
-depends=('gmp>=4.1' 'libtool' 'gettext' 'libunistring' 'gc' 'libffi')
-builddepends=('pkgconfig')
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gmp>=4.3.1' 'libtool' 'ncurses>=5.7' 'texinfo'
+ 'libunistring' 'gc' 'libffi')
+conflicts=('guile' 'guile-git')
+provides=("guile=$pkgver")
install=guile.install
-source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz)
-sha1sums=('4fde55bbd612adda267420d86d8b395d49031809')
-# I think .xz is only provided for latest release, so change to .gz if it vanishes
+options=('!libtool')
+source=(ftp://ftp.gnu.org/pub/gnu/guile/guile-${pkgver}.tar.gz)
+sha256sums=('2a026ea6cdbc51ca71bcd9787839debfa45ac5db1e26dc00b30ca9b128b10956')
build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- ./configure --prefix=/usr \
- --disable-static \
- --disable-error-on-warning
+ cd "${srcdir}/guile-${pkgver}"
+
+ ./configure --prefix=/usr
make LDFLAGS+="-lpthread"
}
package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
+ cd "${srcdir}/guile-${pkgver}"
make DESTDIR="${pkgdir}" install
-} \ No newline at end of file
+}