diff options
author | Sven Gothel <[email protected]> | 2010-12-13 08:47:22 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-12-13 08:47:22 +0100 |
commit | 57ef6b5648cc3f95a490477627c5a350251a09bf (patch) | |
tree | 598b088f08763b7e737711409c4f6e90f2832b3c | |
parent | b613ed9910cb34ba05f5f72cbb683810e90edab6 (diff) |
Add joal.jnlp template
-rw-r--r-- | jnlp-files/joal.jnlp | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/jnlp-files/joal.jnlp b/jnlp-files/joal.jnlp new file mode 100644 index 0000000..0325a0a --- /dev/null +++ b/jnlp-files/joal.jnlp @@ -0,0 +1,66 @@ +<?xml version="1.0" encoding="utf-8"?> +<jnlp codebase="JOAL_CODEBASE_TAG/" + href="joal.jnlp"> + <information> + <title>Java(tm) Binding to the OpenAL(r) API</title> + <vendor>JogAmp Community</vendor> + <homepage href="http://jogamp.org/"/> + <description>Java Binding to the OpenAL API</description> + <description kind="short">Java programming language binding for the OpenAL API</description> + <offline-allowed/> + </information> + <update check="background" policy="always"/> + <security> + <all-permissions/> + </security> + <resources> + <jar href="joal.jar" main="true"/> + + <extension name="gluegen-rt" href="GLUEGEN_CODEBASE_TAG/gluegen-rt.jnlp" /> + </resources> + + <resources os="Windows" arch="x86"> + <nativelib href = "joal-natives-windows-i586.jar" /> + </resources> + <resources os="Windows" arch="amd64"> + <nativelib href = "joal-natives-windows-amd64.jar" /> + </resources> + <resources os="Windows" arch="x86_64"> + <nativelib href = "joal-natives-windows-amd64.jar" /> + </resources> + <resources os="SunOS" arch="sparc"> + <nativelib href = "joal-natives-solaris-sparc.jar" /> + </resources> + <resources os="SunOS" arch="sparcv9"> + <nativelib href = "joal-natives-solaris-sparcv9.jar" /> + </resources> + <resources os="SunOS" arch="x86"> + <nativelib href = "joal-natives-solaris-i586.jar" /> + </resources> + <resources os="SunOS" arch="amd64"> + <nativelib href = "joal-natives-solaris-amd64.jar" /> + </resources> + <resources os="SunOS" arch="x86_64"> + <nativelib href = "joal-natives-solaris-amd64.jar" /> + </resources> + <resources os="Linux" arch="i386"> + <nativelib href = "joal-natives-linux-i586.jar" /> + </resources> + <resources os="Linux" arch="x86"> + <nativelib href = "joal-natives-linux-i586.jar" /> + </resources> + <resources os="Linux" arch="amd64"> + <nativelib href = "joal-natives-linux-amd64.jar" /> + </resources> + <resources os="Linux" arch="x86_64"> + <nativelib href = "joal-natives-linux-amd64.jar" /> + </resources> + <resources os="Mac OS X" arch="i386"> + <nativelib href = "joal-natives-macosx-universal.jar" /> + </resources> + <resources os="Mac OS X" arch="x86_64"> + <nativelib href = "joal-natives-macosx-universal.jar" /> + </resources> + + <component-desc /> +</jnlp> |