c556a6ea46
function, so obsolete it. svn path=/nixpkgs/branches/stdenv-updates/; revision=31644
25 lines
439 B
Bash
25 lines
439 B
Bash
source $stdenv/setup
|
|
|
|
tar zxvf $src
|
|
cd jasmin-*
|
|
|
|
sed -e 's/<javac/<javac source="1.4"/' build.xml > build-tmp.xml
|
|
mv build-tmp.xml build.xml
|
|
|
|
cat > ant.settings <<EOF
|
|
java_cup.jar=$javaCup
|
|
|
|
# Location in which to generate Jasmin release tarballs
|
|
release.loc=lib
|
|
|
|
# Version of Jasmin for tagging tarballs
|
|
jasmin.version=foo
|
|
|
|
build.compiler=javac1.4
|
|
EOF
|
|
|
|
ant jasmin-jar
|
|
|
|
mkdir -p $out/jars/
|
|
mv lib/jasminclasses-foo.jar $out/jars/jasmin.jar
|