0d9fc34957
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
28 lines
452 B
Bash
Executable file
28 lines
452 B
Bash
Executable file
if [ -e .attrs.sh ]; then source .attrs.sh; fi
|
|
source $stdenv/setup
|
|
|
|
export JAVA_HOME=$jre
|
|
|
|
cat >> props <<EOF
|
|
output.dir=$out
|
|
context.javaPath=$jre
|
|
EOF
|
|
|
|
mkdir -p $out
|
|
$jre/bin/java -jar $src -text props
|
|
|
|
echo "Removing files at top level"
|
|
for file in $out/*
|
|
do
|
|
if test -f $file ; then
|
|
rm $file
|
|
fi
|
|
done
|
|
|
|
cat >> $out/bin/aj-runtime-env <<EOF
|
|
#! $SHELL
|
|
|
|
export CLASSPATH=$CLASSPATH:.:$out/lib/aspectjrt.jar
|
|
EOF
|
|
|
|
chmod u+x $out/bin/aj-runtime-env
|