blob: 2fe8e4a7066ae8f4e668c9c37432823d02f9b542 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Contributor: Tarn W. Burton <twburton@gmail.com>
pkgname=ecl-git
pkgver=24.5.10.r262.g4f0fed469
pkgrel=1
pkgdesc="Embeddable Common Lisp"
arch=('x86_64')
url="https://common-lisp.net/project/ecl/"
license=('LGPL')
depends=('bash' 'gmp')
makedepends=('texinfo')
provides=('common-lisp' 'cl-asdf')
options=('!makeflags')
source=("git+https://gitlab.com/embeddable-common-lisp/ecl.git")
sha256sums=('SKIP')
pkgver() {
cd ecl
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd ecl
sed -i 's|-Wl,--rpath,~A|-Wl,--rpath,/usr/lib/ecl|' src/configure
CFLAGS+=" -fcommon -ffat-lto-objects" \
./configure \
--build=$CHOST \
--prefix=/usr \
--with-tcp \
--with-serve-event \
--with-clos-streams \
--with-system-gmp \
--without-x \
--without-clx \
--enable-threads \
--enable-shared \
--enable-boehm=included \
make
}
package() {
make -C ecl DESTDIR="$pkgdir" install
}
|