Skip to content

Instantly share code, notes, and snippets.

@stpettersens
Created September 1, 2010 12:13
Show Gist options
  • Save stpettersens/560593 to your computer and use it in GitHub Desktop.
Save stpettersens/560593 to your computer and use it in GitHub Desktop.
#!/bin/sh
# Build Gaudi
pkg="org/stpettersens/gaudi"
jarF="Gaudi.jar"
echo "Compiling..."
scalac -classpath ./lib -verbose -deprecation -unchecked -d bin src/$pkg/*.scala
echo "Packaging..."
cp Manifest.mf bin
cd bin
jar cfm $jarF Manifest.mf *
rm Manifest.mf
cd ..
echo "Done."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment