mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-05 20:36:40 +02:00
testing/clisp: new aport
This commit is contained in:
parent
85a5eb1c3e
commit
05eacdffd5
52
testing/clisp/APKBUILD
Normal file
52
testing/clisp/APKBUILD
Normal file
@ -0,0 +1,52 @@
|
||||
# Contributor: Carlo Landmeter <clandmeter@gmail.com>
|
||||
# Maintainer:
|
||||
pkgname=clisp
|
||||
pkgver=2.49
|
||||
pkgrel=0
|
||||
pkgdesc="ANSI Common Lisp interpreter, compiler and debugger"
|
||||
url="http://clisp.cons.org/"
|
||||
arch="all"
|
||||
license="GPL"
|
||||
depends=""
|
||||
depends_dev="readline-dev libsigsegv ffcall ncurses-dev"
|
||||
makedepends="$depends_dev"
|
||||
install=""
|
||||
subpackages="$pkgname-dev $pkgname-doc"
|
||||
source="http://downloads.sourceforge.net/sourceforge/clisp/clisp-$pkgver.tar.bz2
|
||||
no-page.h.patch"
|
||||
_builddir="$srcdir"/clisp-$pkgver
|
||||
|
||||
prepare() {
|
||||
local i
|
||||
cd "$_builddir"
|
||||
for i in $source; do
|
||||
case $i in
|
||||
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
||||
esac
|
||||
done
|
||||
update_config_sub || return 1
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "$_builddir"
|
||||
ulimit -s 16384
|
||||
_configure="--prefix=/usr --with-readline --with-ffcall --with-dynamic-ffi \
|
||||
--mandir=/usr/share/man --infodir=/usr/share/info"
|
||||
./configure $_configure || return 1
|
||||
cd src
|
||||
./makemake $_configure > Makefile
|
||||
make -j1 || return 1
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$_builddir"/src
|
||||
make DESTDIR="$pkgdir" install || return 1
|
||||
rm -f "$pkgdir"/usr/lib/*.la
|
||||
}
|
||||
|
||||
md5sums="1962b99d5e530390ec3829236d168649 clisp-2.49.tar.bz2
|
||||
a8456d6a45340e091055b58c306022ef no-page.h.patch"
|
||||
sha256sums="8132ff353afaa70e6b19367a25ae3d5a43627279c25647c220641fed00f8e890 clisp-2.49.tar.bz2
|
||||
2d3bd8dde82e5cdf0a3825a0b67df110e20e19541308509d1165029c589b3d0a no-page.h.patch"
|
||||
sha512sums="eef66fc85199a2c283b616db61bf67ff103eeb0f19fa907da48994dc790b6f5f8d0c74fb3bd723c6b827c0ff3cfd89fa6ba67934fc669ed5d5249044b5140d81 clisp-2.49.tar.bz2
|
||||
86273c5d5d05a8d41ab6311192e0c757d3f7fe4d78546590830aa00f8c2f170fcb08f66ea739ae8834cec00cdf0f6a20824eb6a3d0f6df97be405c26b1cc5d39 no-page.h.patch"
|
||||
Loading…
x
Reference in New Issue
Block a user