blob: 1997d28a358aab8bf49b55d43d6daae2abca947c (
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
|
# 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.5a
pkgrel=20
epoch=1
_suffix=unstable
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' 'libpulse' 'mpg123' 'avahi' 'sqlite' 'gstreamer')
makedepends=('java-environment' 'emacs' 'zip' 'sqlite' 'alsa-lib' 'flac' 'avahi' 'chrpath' 'tar')
optdepends=('java-environment' 'emacs' 'zip' 'sqlite' 'alsa-lib' 'flac' 'avahi')
options=('!makeflags' 'staticlibs')
conflicts=('bigloo')
provides=("bigloo=$pkgver")
source=(ftp://ftp-sop.inria.fr/indes/fp/Bigloo/${pkgname%-devel}-${_suffix}.tar.gz bigloo-emacs.patch)
sha256sums=('edc1914e03a4950b170a231fce941e62cc65de3582ebd08524ecce5eb4a0a994'
'80356c27b58a302775f75e848a89ab2d588796a548f4ce7a20df048e215deab0')
prepare() {
patch -p0 -d "${srcdir}/${pkgname%-devel}-$_suffix" -i "${srcdir}/bigloo-emacs.patch"
}
build() {
cd ${pkgname%-devel}-$_suffix
./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 \
--customunistring=no \
--jvm=no \
--native-default-backend \
--enable-avahi \
--enable-flac \
--enable-sqlite \
--enable-ssl \
--enable-gstreamer \
--disable-mqtt
EXTRALIBS="-ldl -lresolv -lunistring -lpcre -lgmp -lm -lc" make build compile-bee
}
check() {
cd ${pkgname%-devel}-$_suffix
make test
}
package() {
cd ${pkgname%-devel}-$_suffix
make DESTDIR="${pkgdir}" install install-bee
make -C manuals DESTDIR="${pkgdir}" install-bee
rm "${pkgdir}"/usr/bin/{bglafile,bigloo}.sh
}
|