-
-
Save nunb/9352e9bdc6c454043549849529e4fbd4 to your computer and use it in GitHub Desktop.
Fingerworks Multitouch Utility Runner
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # authenticate with the repository | |
| # use a blank password | |
| cvs -d:pserver:anonymous@jusb.cvs.sourceforge.net:/cvsroot/jusb login | |
| # pull down the source | |
| cvs -z3 -d:pserver:anonymous@jusb.cvs.sourceforge.net:/cvsroot/jusb co -P jusb | |
| # change directories | |
| cd jusb | |
| # download the patch | |
| curl https://raw.github.com/gist/1096642/28a4716fb5972d44afa47af0d1b2ffea4cc285da/jusb_osx.patch >jusb_osx.patch | |
| # patch the source | |
| # use Makefile as the file name | |
| patch < jusb_osx.patch | |
| # compile the source | |
| make | |
| # copy the files in to the referenced directory | |
| cp -r libjusbMacOSX.jnilib* /Applications/FingerWorks/lib/jusb/ | |
| cp jusb.jar /Applications/FingerWorks/lib/jusb/ | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 217c217 | |
| < JNI_INC = -I/System/Library/Frameworks/JavaVM.framework/Versions/1.3.1/Headers | |
| --- | |
| > JNI_INC = -I/System/Library/Frameworks/JavaVM.framework/Versions/Current/Headers | |
| 488a489 | |
| > native/*.o \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| export JAVAROOT=Contents/Resources/Java/ | |
| export CLASS_PATH=lib/jusb/jusb.jar:lib/FW_defaults.jar:lib/upgredit.jar:lib/jh.jar:lib/utility_help.jar:lib/jdom/xerces.jar:lib/jdom/jdom.jar:$JAVAROOT/lax.jar | |
| cd /Applications/Fingerworks | |
| java -Djava.library.path=lib/jusb -Dcom.apple.mrj.application.growbox.intrudes=true -classpath $CLASS_PATH fingerworks.firmup.UtilityLauncher |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment