summaryrefslogtreecommitdiff
path: root/~brendan/guile/PKGBUILD
diff options
context:
space:
mode:
authorBrendan <brendan@tiddles.me>2013-06-27 20:22:52 +1000
committerBrendan <brendan@tiddles.me>2013-06-27 20:22:52 +1000
commit949ee72ae4bf239e60c86db4f55ea4e809a54e6c (patch)
treee6303ba988071fb8fc3466a55e43426ef9496478 /~brendan/guile/PKGBUILD
parentbf69f302f87eb836d5ebec3a9ea67f2b54401ceb (diff)
Revert "Deleting my ~brendan directory because it is not needed."
This reverts commit a6b628ef005727ee5baab0b23066438f62098172.
Diffstat (limited to '~brendan/guile/PKGBUILD')
-rw-r--r--~brendan/guile/PKGBUILD32
1 files changed, 32 insertions, 0 deletions
diff --git a/~brendan/guile/PKGBUILD b/~brendan/guile/PKGBUILD
new file mode 100644
index 000000000..af8827563
--- /dev/null
+++ b/~brendan/guile/PKGBUILD
@@ -0,0 +1,32 @@
+# 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.5
+pkgrel=1
+pkgdesc="GNU Ubiquitous Intelligent Language for Extensions - a portable, embeddable Scheme implementation written in C"
+url="http://www.gnu.org/software/guile/"
+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
+options=('!libtool')
+source=(ftp://ftp.gnu.org/pub/gnu/guile/guile-${pkgver}.tar.gz)
+sha256sums=('2a026ea6cdbc51ca71bcd9787839debfa45ac5db1e26dc00b30ca9b128b10956')
+
+build() {
+ cd "${srcdir}/guile-${pkgver}"
+
+ ./configure --prefix=/usr
+ make LDFLAGS+="-lpthread"
+}
+
+package() {
+ cd "${srcdir}/guile-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}