headless build of InstallAnywhere installer
authorjprocter <Jim Procter>
Thu, 7 Aug 2008 16:42:34 +0000 (16:42 +0000)
committerjprocter <Jim Procter>
Thu, 7 Aug 2008 16:42:34 +0000 (16:42 +0000)
utils/InstallAnywhere/jalview_buildinstaller.xml [new file with mode: 0644]

diff --git a/utils/InstallAnywhere/jalview_buildinstaller.xml b/utils/InstallAnywhere/jalview_buildinstaller.xml
new file mode 100644 (file)
index 0000000..3c5a609
--- /dev/null
@@ -0,0 +1,39 @@
+<?xml version="1.0"?>\r
+<project name="jalviewInstallAnywhere" default="build" basedir=".">\r
+  <property name="IA_LOCATION" value="/homes/ws-dev1/Macromedia/InstallAnywhere_2008"/>\r
+  <property name="IA_PROJECT" location="Jalview.iap_xml"/>\r
+  <property name="ABS_PATH" value="/homes/www-jalview/jalview"/>\r
+  <property name="CUR_PATH" location="." />\r
+  <property name="USER_HOME" location="~" />\r
+  <taskdef name="buildinstaller" classname="com.zerog.ia.integration.ant.InstallAnywhereAntTask"/>\r
+  <target name="build">\r
+  <copy file="${IA_PROJECT}" tofile="${IA_PROJECT}_reloc.iap_xml"/>\r
+  <replaceregexp\r
+    match="${ABS_PATH}"\r
+    replace="${CUR_PATH}">\r
+   <fileset file="${IA_PROJECT}_reloc.iap_xml" />\r
+  </replaceregexp>\r
+  <replaceregexp\r
+    match="/homes/www-jalview"\r
+    replace="${USER_HOME}">\r
+   <fileset file="${IA_PROJECT}_reloc.iap_xml" />\r
+  </replaceregexp>\r
+\r
+  <buildinstaller \r
+     IAlocation="${IA_LOCATION}"\r
+     IAProjectFile="${IA_PROJECT}_reloc.iap_xml"\r
+/>\r
+  <copy todir="${DEST_IADIR}">\r
+  <fileset dir="${IA_PROJECT}_reloc.iap_xml_Build_Output">\r
+  <include name="**/*"/>\r
+  <include name="*.*"/>\r
+  </fileset>\r
+</copy>\r
+</target>\r
+<!--     additionalparameter=""\r
+     failonerror="true"\r
+     BuildLinuxWithVM="true"\r
+     BuildMacOSX="true"\r
+     BuildWebInstallers="true"\r
+     OptimizeWebInstallers="true" -->\r
+</project>\r