summaryrefslogtreecommitdiff
path: root/extra/clisp
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2012-02-26 22:29:52 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2012-02-26 22:29:52 -0300
commit258bafde6bf3c83e4108230457073e8136719a73 (patch)
treea6132a3a8316be50ff77e3cfcf5c41f94747bd2c /extra/clisp
parent9b703cb6980ff009ca181cecd900cb2e78f5d54e (diff)
parentf6a79a3f5989efc8db63af942851c56f0c462bb1 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/pigeonhole/PKGBUILD community/pv/PKGBUILD community/python-gnupginterface/PKGBUILD community/tdl/PKGBUILD extra/clisp/PKGBUILD extra/expect/PKGBUILD extra/gtkpod/PKGBUILD extra/hspell/PKGBUILD extra/id3lib/PKGBUILD extra/imake/PKGBUILD extra/libfontenc/PKGBUILD extra/libice/PKGBUILD extra/libsm/PKGBUILD extra/libspectre/PKGBUILD extra/libtasn1/PKGBUILD extra/libxau/PKGBUILD extra/libxaw/PKGBUILD extra/libxxf86dga/PKGBUILD extra/mp3splt/PKGBUILD extra/multitail/PKGBUILD extra/nss_ldap/PKGBUILD extra/pam_ldap/PKGBUILD extra/recode/PKGBUILD extra/ruby/PKGBUILD extra/squid/PKGBUILD extra/ssmtp/PKGBUILD extra/umfpack/PKGBUILD extra/xorg-xbacklight/PKGBUILD extra/xorg-xbiff/PKGBUILD extra/xorg-xcalc/PKGBUILD extra/xorg-xconsole/PKGBUILD extra/xorg-xedit/PKGBUILD extra/xorg-xeyes/PKGBUILD extra/xorg-xvinfo/PKGBUILD
Diffstat (limited to 'extra/clisp')
-rw-r--r--extra/clisp/PKGBUILD26
1 files changed, 17 insertions, 9 deletions
diff --git a/extra/clisp/PKGBUILD b/extra/clisp/PKGBUILD
index 4738a52c6..e073ae272 100644
--- a/extra/clisp/PKGBUILD
+++ b/extra/clisp/PKGBUILD
@@ -1,8 +1,8 @@
-# $Id: PKGBUILD 90068 2010-09-07 13:27:59Z juergen $
+# $Id: PKGBUILD 151174 2012-02-25 06:56:49Z pierre $
# Maintainer: Juergen Hoetzel <juergen@archlinux.org>
pkgname=clisp
pkgver=2.49
-pkgrel=1
+pkgrel=2
pkgdesc="ANSI Common Lisp interpreter, compiler and debugger"
arch=('i686' 'x86_64' 'mips64el')
license=('GPL')
@@ -10,20 +10,28 @@ url="http://clisp.cons.org/"
depends=('readline' 'libsigsegv')
provides=('common-lisp')
makedepends=('ffcall')
-options=('!makeflags')
-source=(http://downloads.sourceforge.net/sourceforge/clisp/clisp-${pkgver}.tar.bz2)
+options=('!makeflags' '!emptydirs')
+source=("http://downloads.sourceforge.net/sourceforge/clisp/clisp-${pkgver}.tar.bz2")
md5sums=('1962b99d5e530390ec3829236d168649')
build() {
cd $srcdir/${pkgname}-${pkgver}
- unset CFLAGS CXXFLAGS
./configure --prefix=/usr --with-readline --with-ffcall src
cd src
./makemake --prefix=/usr --with-readline --with-ffcall --with-dynamic-ffi > Makefile
# Dirty hack for using arimips64 instead of arimips.c
[ $CARCH = "mips64el" ] && ln -s arimips64.c arimips.c
- make || return 1
+ make
sed -i 's,http://www.lisp.org/HyperSpec/,http://www.lispworks.com/reference/HyperSpec/,g' config.lisp
- make || return 1
- make DESTDIR=$pkgdir install || return 1
-} \ No newline at end of file
+ make
+}
+
+check() {
+ cd $srcdir/${pkgname}-${pkgver}/src
+ make check
+}
+
+package() {
+ cd $srcdir/${pkgname}-${pkgver}/src
+ make DESTDIR=$pkgdir install
+}