summary refs log tree commit diff
path: root/pkgs/development/compilers/strategoxt/svnbuilder.sh
blob: bed37b987f238c5e6a59d0ba9f6a600dd97cf287 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! /bin/sh

buildinputs="$aterm $sdf $make $automake $autoconf $libtool $which"
. $stdenv/setup || exit 1

echo "pwd = `pwd`"
echo "PATH = $PATH"

cp -r $src strategoxt || exit 1
chmod -R +w strategoxt
cd strategoxt || exit 1
./bootstrap || exit 1
./configure --prefix=$out --with-aterm=$aterm --with-sdf=$sdf || exit 1
make install || exit 1