Date: Wednesday, April 18, 2018 @ 08:18:53 Author: bpiotrowski Revision: 322164
4.3a-3: use system libuv, gmp and gc Modified: bigloo/trunk/PKGBUILD ----------+ PKGBUILD | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2018-04-17 23:37:05 UTC (rev 322163) +++ PKGBUILD 2018-04-18 08:18:53 UTC (rev 322164) @@ -6,12 +6,12 @@ pkgname=bigloo _pkgver=4.3a pkgver=${_pkgver/-/_} -pkgrel=2 +pkgrel=3 pkgdesc="Fast scheme compiler" arch=('x86_64') url="http://www-sop.inria.fr/mimosa/fp/Bigloo/" license=('GPL' 'LGPL') -depends=('gmp' 'openssl' 'libunistring' 'libnsl') +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') @@ -23,16 +23,23 @@ build() { cd "${srcdir}/${pkgname}${_pkgver}" ./configure --prefix=/usr \ - --enable-ssl \ - --enable-sqlite \ + --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 \ - --disable-gstreamer \ - --mandir=/usr/share/man \ - --infodir=/usr/share/info \ - --docdir=/usr/share/doc/bigloo \ - --jvm=yes + --enable-sqlite \ + --enable-ssl \ + --disable-gstreamer + make build compile-bee }