mirror of
https://github.com/AppleCommander/AppleCommander.git
synced 2024-12-22 08:30:35 +00:00
Add Mac application bundle; cross-platform build.
This commit is contained in:
parent
5b13796be0
commit
058608b124
@ -1,6 +1,6 @@
|
|||||||
<project name="AppleCommander" default="all" basedir="..">
|
<project name="AppleCommander" default="all" basedir="..">
|
||||||
<description>
|
<description>
|
||||||
This ANT build script will build the pieces that need to be distributed.
|
This script builds the distribution components.
|
||||||
</description>
|
</description>
|
||||||
|
|
||||||
<property name="work" value="work"/>
|
<property name="work" value="work"/>
|
||||||
@ -12,23 +12,41 @@
|
|||||||
<property name="doc" value="documentation"/>
|
<property name="doc" value="documentation"/>
|
||||||
<property name="web" value="web"/>
|
<property name="web" value="web"/>
|
||||||
<property name="javadoc" value="${work}/javadoc"/>
|
<property name="javadoc" value="${work}/javadoc"/>
|
||||||
<property name="swtjar" value="C:\Program Files\Eclipse 2.1.x\plugins\org.eclipse.swt.win32_2.1.3\ws\win32\swt.jar"/>
|
<condition property="swtjar"
|
||||||
<property name="junitjar" value="C:\Java\lib\junit3.8.1\junit.jar"/>
|
value="C:\Program Files\Eclipse 2.1.x\plugins\org.eclipse.swt.win32_2.1.3\ws\win32\swt.jar"
|
||||||
|
else="/Users/Shared/eclipse/plugins/org.eclipse.swt.carbon.macosx_3.2.2.v3236.jar">
|
||||||
|
<os family="windows"/>
|
||||||
|
</condition>
|
||||||
|
<condition property="junitjar"
|
||||||
|
value="C:\Java\lib\junit3.8.1\junit.jar"
|
||||||
|
else="/Users/Shared/junit/junit.jar">
|
||||||
|
<os family="windows"/>
|
||||||
|
</condition>
|
||||||
|
|
||||||
<target name="init" description="Ensure work directory is present">
|
<target name="version" description="Get version from source.">
|
||||||
|
<property name="main.path" value="src/com/webcodepro/applecommander/ui"/>
|
||||||
|
<loadfile srcfile="${main.path}/AppleCommander.java" property="acVersion">
|
||||||
|
<filterchain>
|
||||||
|
<linecontainsregexp>
|
||||||
|
<regexp pattern='^.*String VERSION = ".*";.*$'/>
|
||||||
|
</linecontainsregexp>
|
||||||
|
<tokenfilter>
|
||||||
|
<replaceregex pattern='^.*String VERSION = "(.*)";.*$' replace='\1'/>
|
||||||
|
</tokenfilter>
|
||||||
|
<striplinebreaks/>
|
||||||
|
</filterchain>
|
||||||
|
</loadfile>
|
||||||
|
<echo>Building version ${acVersion}...</echo>
|
||||||
|
</target>
|
||||||
|
|
||||||
|
<target name="init" depends="version" description="Ensure work directory is present">
|
||||||
<mkdir dir="${work}"/>
|
<mkdir dir="${work}"/>
|
||||||
<mkdir dir="${classes}"/>
|
<mkdir dir="${classes}"/>
|
||||||
<mkdir dir="${dist}"/>
|
<mkdir dir="${dist}"/>
|
||||||
<mkdir dir="${javadoc}"/>
|
<mkdir dir="${javadoc}"/>
|
||||||
<input message="Please enter the version number for this release of AppleCommander:"
|
|
||||||
addproperty="acVersion"/>
|
|
||||||
<condition property="do.abort">
|
|
||||||
<equals arg1="" arg2="${acVersion}"/>
|
|
||||||
</condition>
|
|
||||||
<fail if="do.abort">Version number is required.</fail>
|
|
||||||
<echo>Making build ${acVersion}...</echo>
|
|
||||||
<property name="guijar" value="${dist}/AppleCommander-${acVersion}.jar"/>
|
<property name="guijar" value="${dist}/AppleCommander-${acVersion}.jar"/>
|
||||||
<property name="cmdjar" value="${dist}/AppleCommander-${acVersion}-ac.jar"/>
|
<property name="cmdjar" value="${dist}/AppleCommander-${acVersion}-ac.jar"/>
|
||||||
|
<property name="maczip" value="${dist}/AppleCommander-${acVersion}-mac.zip"/>
|
||||||
<property name="srczip" value="${dist}/AppleCommander-${acVersion}-src.zip"/>
|
<property name="srczip" value="${dist}/AppleCommander-${acVersion}-src.zip"/>
|
||||||
<property name="webzip" value="${dist}/AppleCommander-${acVersion}-web.zip"/>
|
<property name="webzip" value="${dist}/AppleCommander-${acVersion}-web.zip"/>
|
||||||
</target>
|
</target>
|
||||||
@ -39,7 +57,11 @@
|
|||||||
<delete dir="${javadoc}"/>
|
<delete dir="${javadoc}"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="all" depends="init,executableGuiJar,executableCmdJar,sourceZip,javadoc,websiteZip" description="Everything">
|
<target name="all" depends="init,jars,macBundle,sourceZip,javadoc,websiteZip" description="Everything">
|
||||||
|
<!-- Nothing else to do - depends handles it all. -->
|
||||||
|
</target>
|
||||||
|
|
||||||
|
<target name="jars" depends="init,executableGuiJar,executableCmdJar" description="Build executable jars">
|
||||||
<!-- Nothing else to do - depends handles it all. -->
|
<!-- Nothing else to do - depends handles it all. -->
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
@ -85,6 +107,23 @@
|
|||||||
</jar>
|
</jar>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
<target name="macBundle" depends="init,jars" description="Build Mac application bundle.">
|
||||||
|
<property name="mac.dir" value="mac"/>
|
||||||
|
<property name="mac.app" value="${mac.dir}/AppleCommander.app"/>
|
||||||
|
<property name="mac.Contents" value="${mac.app}/Contents"/>
|
||||||
|
<property name="mac.Java" value="${mac.Contents}/Resources/Java"/>
|
||||||
|
<touch file="${mac.dir}/Info.plist"/>
|
||||||
|
<filter token="version" value="${acVersion}"/>
|
||||||
|
<copy file="${mac.dir}/Info.plist" todir="${mac.Contents}" filtering="true"/>
|
||||||
|
<copy file="${guijar}" tofile="${mac.Java}/AppleCommander.jar"/>
|
||||||
|
<copy file="${cmdjar}" tofile="${user.home}/bin/ac.jar"/>
|
||||||
|
<zip destfile="${maczip}">
|
||||||
|
<zipfileset dir="${mac.app}" prefix="AppleCommander.app"/>
|
||||||
|
<zipfileset dir="${mac.app}" prefix="AppleCommander.app"
|
||||||
|
includes="Contents/MacOS/JavaApplicationStub" filemode="755"/>
|
||||||
|
</zip>
|
||||||
|
</target>
|
||||||
|
|
||||||
<target name="sourceZip" depends="init" description="Build source ZIP archive">
|
<target name="sourceZip" depends="init" description="Build source ZIP archive">
|
||||||
<zip zipfile="${srczip}">
|
<zip zipfile="${srczip}">
|
||||||
<zipfileset dir=".">
|
<zipfileset dir=".">
|
||||||
|
BIN
mac/AppleCommander.app/Contents/MacOS/JavaApplicationStub
Executable file
BIN
mac/AppleCommander.app/Contents/MacOS/JavaApplicationStub
Executable file
Binary file not shown.
1
mac/AppleCommander.app/Contents/PkgInfo
Normal file
1
mac/AppleCommander.app/Contents/PkgInfo
Normal file
@ -0,0 +1 @@
|
|||||||
|
APPL????
|
BIN
mac/AppleCommander.app/Contents/Resources/AppleCommander.icns
Normal file
BIN
mac/AppleCommander.app/Contents/Resources/AppleCommander.icns
Normal file
Binary file not shown.
BIN
mac/AppleCommander.app/Contents/Resources/Java/libswt-carbon-3236.jnilib
Executable file
BIN
mac/AppleCommander.app/Contents/Resources/Java/libswt-carbon-3236.jnilib
Executable file
Binary file not shown.
BIN
mac/AppleCommander.app/Contents/Resources/Java/libswt-pi-carbon-3236.jnilib
Executable file
BIN
mac/AppleCommander.app/Contents/Resources/Java/libswt-pi-carbon-3236.jnilib
Executable file
Binary file not shown.
BIN
mac/AppleCommander.app/Contents/Resources/Java/swt.jar
Normal file
BIN
mac/AppleCommander.app/Contents/Resources/Java/swt.jar
Normal file
Binary file not shown.
72
mac/Info.plist
Normal file
72
mac/Info.plist
Normal file
@ -0,0 +1,72 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
|
||||||
|
<dict>
|
||||||
|
|
||||||
|
<key>CFBundleDevelopmentRegion</key>
|
||||||
|
<string>English</string>
|
||||||
|
|
||||||
|
<key>CFBundleExecutable</key>
|
||||||
|
<string>JavaApplicationStub</string>
|
||||||
|
|
||||||
|
<key>CFBundleGetInfoString</key>
|
||||||
|
<string>@version@: Distributed under the terms of the GNU Public license.</string>
|
||||||
|
|
||||||
|
<key>CFBundleIconFile</key>
|
||||||
|
<string>AppleCommander.icns</string>
|
||||||
|
|
||||||
|
<key>CFBundleInfoDictionaryVersion</key>
|
||||||
|
<string>6.0</string>
|
||||||
|
|
||||||
|
<key>CFBundleName</key>
|
||||||
|
<string>AppleCommander</string>
|
||||||
|
|
||||||
|
<key>CFBundlePackageType</key>
|
||||||
|
<string>APPL</string>
|
||||||
|
|
||||||
|
<key>CFBundleSignature</key>
|
||||||
|
<string>????</string>
|
||||||
|
|
||||||
|
<key>CFBundleShortVersionString</key>
|
||||||
|
<string>@version@</string>
|
||||||
|
|
||||||
|
<key>CFBundleVersion</key>
|
||||||
|
<string>@version@</string>
|
||||||
|
|
||||||
|
<key>Java</key>
|
||||||
|
<dict>
|
||||||
|
|
||||||
|
<key>JVMVersion</key>
|
||||||
|
<string>1.4*</string>
|
||||||
|
|
||||||
|
<key>MainClass</key>
|
||||||
|
<string>com.webcodepro.applecommander.ui.AppleCommander</string>
|
||||||
|
|
||||||
|
<key>ClassPath</key>
|
||||||
|
<string>$JAVAROOT/AppleCommander.jar:$JAVAROOT/swt.jar</string>
|
||||||
|
|
||||||
|
<key>Properties</key>
|
||||||
|
<dict>
|
||||||
|
|
||||||
|
<key>java.library.path</key>
|
||||||
|
<string>$JAVAROOT/</string>
|
||||||
|
|
||||||
|
</dict>
|
||||||
|
|
||||||
|
<key>VMOptions</key>
|
||||||
|
<string>-Xdock:name=AppleCommander</string>
|
||||||
|
|
||||||
|
<key>StartOnMainThread</key><true/>
|
||||||
|
|
||||||
|
</dict>
|
||||||
|
|
||||||
|
<key>LSHasLocalizedDisplayName</key>
|
||||||
|
<true/>
|
||||||
|
|
||||||
|
<key>NSHumanReadableCopyright</key>
|
||||||
|
<string>Copyright 2002-2008 Rob Greene and John B. Matthews.</string>
|
||||||
|
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user