source: release-kits/shared/uninstaller/compile.sh@ 17685

Last change on this file since 17685 was 17685, checked in by oranfry, 15 years ago

uninstaller now uses the unified language bundle strings, has the buttons in the right order, and repaints using a dialog box which will be replaced with a call to repaint() or similar

  • Property svn:executable set to *
File size: 516 bytes
Line 
1rk_home=$1
2if [ "$rk_home" = "" ]; then
3 echo "usage: ./compile.sh <rk_home>"
4 exit
5fi
6
7#setup language string bundle
8rm -rf resources
9mkdir resources
10cp $rk_home/language-strings/*.properties resources
11
12#java compile
13javac Uninstaller.java -Xlint:unchecked
14jar -cmf manifest.mf gsdl-template/uninst.jar *.class resources
15
16#setup a fake greenstone installation
17cp Uninstall.bat gsdl-template
18cp Uninstall.sh gsdl-template
19rm *.class
20
21rm -rf gsdl startmenu
22cp -r gsdl-template gsdl
23cp -r startmenu-template startmenu
Note: See TracBrowser for help on using the repository browser.