blob: 8a9be2c4265baae6d0aaf79cc9192f6ef7b1aa43 (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
# Contributor: Jürgen Hötzel <juergen@archlinux.org>
# Contributor: John Proctor <jproctor@prium.net>
# Contributor: Kevin Piche <kevin@archlinux.org>
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
pkgname=bigloo-devel
_pkgver=4.3h-alpha10Mar20
pkgver=${_pkgver/-/_}
majorver=4.3h
pkgrel=1
epoch=1
pkgdesc="Fast scheme compiler"
arch=('x86_64')
url="https://www-sop.inria.fr/mimosa/fp/Bigloo/"
license=('GPL' 'LGPL')
depends=('gmp' 'openssl' 'libunistring' 'libnsl' 'gc' 'libuv')
makedepends=('java-environment' 'emacs' 'zip' 'sqlite' 'alsa-lib' 'flac' 'avahi' 'chrpath')
optdepends=('java-environment' 'emacs' 'zip' 'sqlite' 'alsa-lib' 'flac' 'avahi')
options=('!makeflags' 'staticlibs')
conflicts=('bigloo')
provides=('bigloo')
source=(ftp://ftp-sop.inria.fr/indes/fp/Bigloo/${pkgname%-devel}${_pkgver}.tar.gz bigloo-emacs.patch)
sha256sums=('5a2d27cbeccc47c0babd81624b88c60c8ba80c7dd49cc03a74c0aa6ebe5bbc9f'
'80356c27b58a302775f75e848a89ab2d588796a548f4ce7a20df048e215deab0')
elisp_dir=/usr/share/emacs/site-lisp/bigloo
build() {
cd ${pkgname%-devel}${majorver}
./configure --prefix=/usr \
--docdir=/usr/share/doc/bigloo \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--lispdir=${elisp_dir} \
--coflags="$CFLAGS" \
--cpicflags="-fPIC" \
--customgc=no \
--customgmp=no \
--customlibuv=no \
--jvm=yes \
--native-default-backend \
--enable-avahi \
--enable-flac \
--enable-sqlite \
--enable-ssl \
--disable-gstreamer
make build compile-bee
}
prepare() {
patch -p0 -d "${srcdir}/${pkgname%-devel}${majorver}" -i "${srcdir}/bigloo-emacs.patch"
}
check() {
cd ${pkgname-devel}${majorver}
make test
}
package() {
cd ${pkgname%-devel}${majorver}
make DESTDIR="${pkgdir}" install install-bee
make -C manuals DESTDIR="${pkgdir}" install-bee
rm "${pkgdir}"/usr/bin/{bglafile,bigloo}.sh
# Remove references to the build root
sed -e "s|^BOOTDIR=.*|BOOTDIR=/usr|g" \
-e "s|^BOOTBINDIR=.*|BOOTBINDIR=/usr/bin|g" \
-e "s|^BOOTLIBDIR=.*|BOOTLIBDIR=/usr/lib/bigloo/${pkgver}|g" \
-e "s|^BGLBUILDBINDIR=.*|BGLBUILDBINDIR=/usr/bin|g" \
-e "s|^BGLBUILDLIBDIR=.*|BGLBUILDLIBDIR=/usr/lib/bigloo/${pkgver}|g" \
-e "s|^\(BIGLOO=.*\)\.sh|\1|" \
-e "s|^\(BGL.*=.*\)\.sh|\1|" \
-i ${pkgdir}/usr/lib/bigloo/${majorver}/Makefile.config
}
|