mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-09 09:52:27 +01:00
Added --disable-mmap to package build, which allowed clisp to compile thereafter. Added myself as a maintainer to prevent the package from becoming unmaintained in the future.
43 lines
1.2 KiB
Plaintext
43 lines
1.2 KiB
Plaintext
# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
|
|
# Contributor: Carlo Landmeter <clandmeter@gmail.com>
|
|
# Maintainer: Will Sinatra <wpsinatra@gmail.com>
|
|
pkgname=clisp
|
|
pkgver=2.49
|
|
pkgrel=3
|
|
pkgdesc="ANSI Common Lisp interpreter, compiler and debugger"
|
|
url="https://clisp.sourceforge.io/"
|
|
arch="x86_64"
|
|
license="GPL-2.0-only"
|
|
depends_dev="libsigsegv-dev ffcall ncurses-dev"
|
|
makedepends="$depends_dev"
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
source="https://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2
|
|
no-page.h.patch"
|
|
|
|
prepare() {
|
|
default_prepare
|
|
update_config_sub
|
|
}
|
|
|
|
build() {
|
|
ulimit -s 16384
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--with-ffcall \
|
|
--with-dynamic-ffi \
|
|
--without-dynamic-modules \
|
|
--disable-mmap \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
"$builddir"
|
|
make -j1
|
|
}
|
|
|
|
package() {
|
|
make -j1 DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="eef66fc85199a2c283b616db61bf67ff103eeb0f19fa907da48994dc790b6f5f8d0c74fb3bd723c6b827c0ff3cfd89fa6ba67934fc669ed5d5249044b5140d81 clisp-2.49.tar.bz2
|
|
86273c5d5d05a8d41ab6311192e0c757d3f7fe4d78546590830aa00f8c2f170fcb08f66ea739ae8834cec00cdf0f6a20824eb6a3d0f6df97be405c26b1cc5d39 no-page.h.patch"
|