Guest User

Untitled

a guest
Apr 29th, 2014
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. #!/bin/sh
  2. set -e
  3.  
  4. #Download zxing
  5.  
  6. cd /usr/local/share
  7. wget http://zxing.googlecode.com/files/ZXing-1.6.zip
  8. unzip ZXing-1.6.zip
  9. cd zxing-1.6/
  10.  
  11. #Build zxing
  12.  
  13. update-alternatives --set java /usr/lib/jvm/java-6-sun/jre/bin/java
  14. ant -f core/build.xml
  15. ant -f javase/build.xml
  16.  
  17. #Cleanup
  18. cd /usr/local/share
  19. rm -f ZXing-1.6.zip
Advertisement
Add Comment
Please, Sign In to add comment