forked from GitHub/gf-core
66 lines
2.2 KiB
Bash
66 lines
2.2 KiB
Bash
#! /bin/bash
|
|
|
|
### This script builds a binary distribution of GF from the source
|
|
### package that this script is a part of. It assumes that you have installed
|
|
### the Haskell Platform, version 2013.2.0.0 or 2012.4.0.0.
|
|
### Two binary package formats are supported: plain tar files (.tar.gz) and
|
|
### OS X Installer packages (.pkg).
|
|
|
|
os=$(uname) # Operating system name (e.g. Darwin or Linux)
|
|
hw=$(uname -m) # Hardware name (e.g. i686 or x86_64)
|
|
|
|
# GF version number:
|
|
ver=$(grep -i ^version: gf.cabal | sed -e 's/version://' -e 's/ //g')
|
|
|
|
name="gf-$ver"
|
|
destdir="$PWD/dist/$name" # assemble binary dist here
|
|
prefix=${PREFIX:-/usr/local} # where to install
|
|
fmt=${FMT:-tar.gz} # binary package format (tar.gz or pkg)
|
|
|
|
extralib="$destdir$prefix/lib"
|
|
extrainclude="$destdir$prefix/include"
|
|
extra="--extra-lib-dirs=$extralib --extra-include-dirs=$extrainclude"
|
|
|
|
set -e # Stop if an error occurs
|
|
set -x # print commands before exuting them
|
|
|
|
## First configure & build the C run-time system
|
|
pushd src/runtime/c
|
|
bash setup.sh configure --prefix="$prefix"
|
|
bash setup.sh build
|
|
bash setup.sh install prefix="$destdir$prefix"
|
|
popd
|
|
|
|
## Build the python binding to the C run-time system
|
|
pushd src/runtime/python
|
|
EXTRA_INCLUDE_DIRS="$extrainclude" EXTRA_LIB_DIRS="$extralib" python setup.py build
|
|
python setup.py install --prefix="$destdir$prefix"
|
|
popd
|
|
|
|
## Build the Java binding to the C run-time system
|
|
pushd src/runtime/java
|
|
# not implemented yet
|
|
popd
|
|
|
|
## Build GF, with C run-time support enabled
|
|
cabal install --only-dependencies
|
|
cabal configure --prefix="$prefix" -fserver -fc-runtime $extra
|
|
DYLD_LIBRARY_PATH="$extralib" LD_LIBRARY_PATH="$extralib" cabal build
|
|
cabal copy --destdir="$destdir"
|
|
libdir=$(dirname $(find "$destdir" -name PGF.hi))
|
|
cabal register --gen-pkg-config=$libdir/gf-$ver.conf
|
|
|
|
case $fmt in
|
|
tar.gz)
|
|
targz="$name-bin-$hw-$os.tar.gz" # the final tar file
|
|
tar -C "$destdir/$prefix" -zcf "dist/$targz" .
|
|
echo "Created $targz, consider renaming it to something more user friendly"
|
|
;;
|
|
pkg)
|
|
pkg=$name.pkg
|
|
pkgbuild --identifier org.grammaticalframework.gf.pkg --version "$ver" --root "$destdir/usr" --install-location "$prefix" dist/$pkg
|
|
echo "Created $pkg"
|
|
esac
|
|
|
|
rm -r "$destdir"
|