updated on Sat Jan 14 00:11:12 UTC 2012
[aur-mirror.git] / sbcl-with-debugger / PKGBUILD
blobf0466f89e8101ba5f57f45c7d9f9ba3df0f402d8
1 # $Id: PKGBUILD 51731 2009-09-10 17:23:57Z juergen $
2 # Contributor: John Proctor <jproctor@prium.net>
3 # Contributor: Daniel White <daniel@whitehouse.id.au>
4 # Maintainer: Juergen Hoetzel <juergen@archlinux.org>
6 pkgname=sbcl-with-debugger
7 pkgver=1.0.34
8 pkgrel=1
9 pkgdesc="Steel Bank Common Lisp with fixes to re-enable the debugger and compilation on x86_64."
10 arch=(i686 x86_64)
11 license=('custom')
12 depends=('glibc')
13 provides=('common-lisp' 'cl-asdf')
14 makedepends=('sbcl' 'texinfo')
15 conflicts=('sbcl')
16 replaces=('sbcl')
17 source=("http://downloads.sourceforge.net/project/sbcl/sbcl/$pkgver/sbcl-$pkgver-source.tar.bz2" "fix-source-path.lisp")
18 md5sums=('78c1a003281d11690f54609b4f5303f4' '8359880b74311d7340022d5211c6344b')
20 url="http://www.sbcl.org/"
21 install=sbcl.install
23 build() {
24   unset LDFLAGS
25   export CFLAGS="${CFLAGS} -DSBCL_HOME=\\\"/usr/lib/sbcl\\\""
26   export GNUMAKE="make -e"
27   cd ${startdir}/src/sbcl-${pkgver}
28   # Make a multi-threaded SBCL, disable LARGEFILE  
29   cat >customize-target-features.lisp <<EOF
30 (lambda (features)
31   (flet ((enable (x) (pushnew x features))
32          (disable (x) (setf features (remove x features))))
33   (enable :sb-thread)
34   (disable :largefile)))
35 EOF
37   sh make.sh sbcl
38   mkdir -p ${startdir}/pkg/usr
39   pushd doc/manual
40   make info || return 1
41   popd 
42   INSTALL_ROOT=${startdir}/pkg/usr sh install.sh
44   src/runtime/sbcl --core output/sbcl.core --script ${startdir}/src/fix-source-path.lisp
45   mv sbcl-new.core ${startdir}/pkg/usr/lib/sbcl/sbcl.core
47 # sources
48   mkdir -p ${startdir}/pkg/usr/share/sbcl-source
49   cp -R -t ${startdir}/pkg/usr/share/sbcl-source \
50     ${startdir}/src/sbcl-${pkgver}/{src,contrib}
52 # drop unwanted files
53   find ${startdir}/pkg/usr/share/sbcl-source -type f \
54     -name \*.fasl -or \
55     -name \*.o -or \
56     -name \*.log -or \
57     -name \*.so -or \
58     -name a.out -delete
60   rm ${startdir}/pkg/usr/share/sbcl-source/src/runtime/sbcl
61   rm ${startdir}/pkg/usr/share/sbcl-source/src/runtime/sbcl.nm
63   find ${startdir}/pkg \( -name Makefile -o -name .cvsignore \) -delete
65   rm $startdir/pkg/usr/share/info/dir
66   gzip -9nf $startdir/pkg/usr/share/info/*
68   # license
69   install -D -m644 ${startdir}/src/sbcl-${pkgver}/COPYING \
70                    ${startdir}/pkg/usr/share/licenses/sbcl/license.txt