summaryrefslogtreecommitdiff
path: root/community/gauche/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
committerroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
commit18a41d682d6e91e0d28fce23eb75292f477bd620 (patch)
treebce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/gauche/PKGBUILD
parent0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff)
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/gauche/PKGBUILD')
-rw-r--r--community/gauche/PKGBUILD34
1 files changed, 0 insertions, 34 deletions
diff --git a/community/gauche/PKGBUILD b/community/gauche/PKGBUILD
deleted file mode 100644
index efc16877c..000000000
--- a/community/gauche/PKGBUILD
+++ /dev/null
@@ -1,34 +0,0 @@
-# $Id: PKGBUILD 94289 2013-07-18 21:59:48Z arodseth $
-# Maintainer: Alexander Rødseth <rodseth@gmail.com>
-# Contributor: Stefan Husmann <stefan-husmann@t-online.de>
-# Contributor: Motohiro Ueki <ueki.com@gmail.com>
-# Contributor: nkoizu <nkoizu@gmail.com>
-
-pkgname=gauche
-pkgver=0.9.3.3
-pkgrel=1
-url='http://practical-scheme.net/gauche/'
-pkgdesc='R5RS Scheme implementation (provides gosh)'
-depends=('gdbm' 'zlib' 'slib')
-license=('BSD')
-arch=('x86_64' 'i686')
-install="$pkgname.install"
-source=("http://downloads.sourceforge.net/$pkgname/Gauche-$pkgver.tgz")
-sha256sums=('3d8b70075faa0f7a24f8d112cc102ee3e1066680cdd19d324d59f33fab79caac')
-
-build() {
- cd "$srcdir/Gauche-$pkgver"
-
- ./configure --prefix=/usr --enable-multibyte=utf-8 \
- --enable-threads=pthreads
- make -j1
-}
-
-package() {
- cd "$srcdir/Gauche-$pkgver"
-
- make -j1 DESTDIR="$pkgdir" install-pkg install-doc
- install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}
-
-# vim:set ts=2 sw=2 et: