Statistics
| Revision:

root / trunk / install / installjammer / build.xml @ 38387

History | View | Annotate | Download (1.1 KB)

1
<project name="InstallJammer" default="init" basedir=".">
2
    <description>
3
        gvSIG 1.x installjammer builder
4
    </description>
5
        
6
        <!-- standard or online --> 
7
        <property name="InstallerType" value="standard"/>
8

    
9
        <!-- set global properties for this build -->
10
          <property name="outputFolder" location="${basedir}/output"/>
11
        <property name="baseFolder" location="${basedir}/../../_fwAndami"/>
12
        <property name="baseNativeLibsDir" location="${basedir}/../../binaries"/>
13
        <property name="buildFile" location="${basedir}/gvsig-${InstallerType}-installer.mpi"/>
14
        
15
        <loadproperties srcFile="${basedir}/../../appgvSIG/package.info"/>
16
        
17
        <property name="installVersion" value="${gvSIG-version}.${build}"/>
18
        
19
        <target name="init">
20
                <exec executable="installjammer" >
21
                        <arg value="-DInstallVersion ${installVersion}"/>
22
                        <arg value="-DInstallString ${installVersion}"/>
23
                        <arg value="-DBaseDir ${baseFolder}"/>
24
                        <arg value="-DBaseNativeLibsDir ${baseNativeLibsDir}"/>
25
                        <arg value="--verbose"/>
26
                        <arg value="--output-dir ${outputFolder}"/>
27
                        
28
                        <arg value="--build ${buildFile}"/>
29
                </exec>
30
                
31
        </target>
32
  
33
</project>