0

- Refactored the licenses and the README and updated the buildfile.

- OpenAL for OSX now uses OpenAL-Soft 1.13-Git.

If someone wants to update that to OpenAL-Soft 1.14, that'd be great.
This commit is contained in:
Ethan Lee
2012-05-09 17:17:41 -04:00
parent 407cbe6aef
commit 274ac41de2
7 changed files with 20 additions and 14 deletions

View File

View File

@@ -62,10 +62,11 @@
</fileset> </fileset>
</copy> </copy>
<!-- Copy doc folder --> <!-- Copy licenses folder and README -->
<copy todir="built/Linux/doc"> <copy todir="built/Linux/licenses">
<fileset dir="doc"/> <fileset dir="licenses"/>
</copy> </copy>
<copy file="README" todir="built/Linux"/>
<!-- Copy GNU/Linux executable file --> <!-- Copy GNU/Linux executable file -->
<copy file="executables/LWJake2.sh" todir="built/Linux"/> <copy file="executables/LWJake2.sh" todir="built/Linux"/>
@@ -97,10 +98,11 @@
</fileset> </fileset>
</copy> </copy>
<!-- Copy doc folder --> <!-- Copy licenses folder and README -->
<copy todir="built/OSX/doc"> <copy todir="built/OSX/licenses">
<fileset dir="doc"/> <fileset dir="licenses"/>
</copy> </copy>
<copy file="README" todir="built/OSX"/>
<!-- Copy OSX executable file --> <!-- Copy OSX executable file -->
<copy file="executables/LWJake2.sh" todir="built/OSX"/> <copy file="executables/LWJake2.sh" todir="built/OSX"/>
@@ -130,10 +132,11 @@
</fileset> </fileset>
</copy> </copy>
<!-- Copy doc folder --> <!-- Copy licenses folder and README -->
<copy todir="built/Windows/doc"> <copy todir="built/Windows/licenses">
<fileset dir="doc"/> <fileset dir="licenses"/>
</copy> </copy>
<copy file="README" todir="built/Windows"/>
<!-- Copy Windows executable file --> <!-- Copy Windows executable file -->
<copy file="executables/LWJake2.bat" todir="built/Windows"/> <copy file="executables/LWJake2.bat" todir="built/Windows"/>
@@ -156,10 +159,11 @@
<!--Copy LWJake2 jar --> <!--Copy LWJake2 jar -->
<copy file="built/jar/lwjake2.jar" todir="built/Server"/> <copy file="built/jar/lwjake2.jar" todir="built/Server"/>
<!-- Copy doc folder --> <!-- Copy licenses folder and README -->
<copy todir="built/Server/doc"> <copy todir="built/Server/licenses">
<fileset dir="doc"/> <fileset dir="licenses"/>
</copy> </copy>
<copy file="README" todir="built/Server"/>
<!-- Copy executable files --> <!-- Copy executable files -->
<copy file="executables/LWJake2_Server.sh" todir="built/Server"/> <copy file="executables/LWJake2_Server.sh" todir="built/Server"/>
@@ -179,10 +183,11 @@
<tarfileset dir="executables" prefix="LWJake2/executables"/> <tarfileset dir="executables" prefix="LWJake2/executables"/>
<tarfileset dir="findbugs" prefix="LWJake2/findbugs"/> <tarfileset dir="findbugs" prefix="LWJake2/findbugs"/>
<tarfileset dir="lib" prefix="LWJake2/lib"/> <tarfileset dir="lib" prefix="LWJake2/lib"/>
<tarfileset dir="doc" prefix="LWJake2/doc"/> <tarfileset dir="licenses" prefix="LWJake2/licenses"/>
<tarfileset dir="src" prefix="LWJake2/src"/> <tarfileset dir="src" prefix="LWJake2/src"/>
<tarfileset dir="." prefix="LWJake2"> <tarfileset dir="." prefix="LWJake2">
<include name="build.xml"/> <include name="build.xml"/>
<include name="README"/>
</tarfileset> </tarfileset>
</tar> </tar>
<zip destfile="built/srcdist/LWJake2-src.zip"> <zip destfile="built/srcdist/LWJake2-src.zip">
@@ -190,9 +195,10 @@
<include name="executables/**"/> <include name="executables/**"/>
<include name="findbugs/**"/> <include name="findbugs/**"/>
<include name="lib/**"/> <include name="lib/**"/>
<include name="doc/**"/> <include name="licenses/**"/>
<include name="src/**"/> <include name="src/**"/>
<include name="build.xml"/> <include name="build.xml"/>
<include name="README"/>
</zipfileset> </zipfileset>
</zip> </zip>
</target> </target>

Binary file not shown.