mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-02-16 23:57:11 +00:00
extra/clisp didn't build 2.49-4, yet is done ? bump @ build
This commit is contained in:
parent
60ae26a1ea
commit
4596009842
1 changed files with 35 additions and 0 deletions
35
extra/PKGBUILD
Normal file
35
extra/PKGBUILD
Normal file
|
@ -0,0 +1,35 @@
|
|||
# $Id$
|
||||
# Maintainer: Juergen Hoetzel <juergen@archlinux.org>
|
||||
pkgname=clisp
|
||||
pkgver=2.49
|
||||
pkgrel=4.1
|
||||
pkgdesc="ANSI Common Lisp interpreter, compiler and debugger"
|
||||
arch=('i686' 'x86_64')
|
||||
license=('GPL')
|
||||
url="http://clisp.cons.org/"
|
||||
depends=('readline' 'libsigsegv')
|
||||
provides=('common-lisp')
|
||||
makedepends=('ffcall')
|
||||
options=('!makeflags' '!emptydirs')
|
||||
source=("http://downloads.sourceforge.net/sourceforge/clisp/clisp-${pkgver}.tar.bz2")
|
||||
md5sums=('1962b99d5e530390ec3829236d168649')
|
||||
|
||||
build() {
|
||||
cd $srcdir/${pkgname}-${pkgver}
|
||||
./configure --prefix=/usr --with-readline --with-ffcall src
|
||||
cd src
|
||||
./makemake --prefix=/usr --with-readline --with-ffcall --with-dynamic-ffi > Makefile
|
||||
make
|
||||
sed -i 's,http://www.lisp.org/HyperSpec/,http://www.lispworks.com/reference/HyperSpec/,g' config.lisp
|
||||
make
|
||||
}
|
||||
|
||||
check() {
|
||||
cd $srcdir/${pkgname}-${pkgver}/src
|
||||
make check
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $srcdir/${pkgname}-${pkgver}/src
|
||||
make DESTDIR=$pkgdir install
|
||||
}
|
Loading…
Reference in a new issue