Former-commit-id:a02aeb236c
[formerly9f19e3f712
] [formerly06a8b51d6d
[formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f]] Former-commit-id:06a8b51d6d
Former-commit-id:3360eb6c5f
21 lines
No EOL
714 B
XML
21 lines
No EOL
714 B
XML
<project name="dist.native" default="deploy.all" basedir=".">
|
|
|
|
<property environment="env"/>
|
|
<property name="install.dir" value="${env.HOME}/awips"/>
|
|
<property name="native.target" value="i386-pc-linux-gnu" />
|
|
<property name="native.distributable.install.from" location="${basedir}/${native.target}.tar"/>
|
|
|
|
<target name="deploy.all">
|
|
|
|
<echo message="Deploying ${native.target} native distributable to ${install.dir}" />
|
|
<!-- ant's untar does not preserve permissions, so we'll execute tar directly -->
|
|
<exec executable="tar">
|
|
<arg value="-xpf"/>
|
|
<arg value="${native.distributable.install.from}"/>
|
|
<arg value="-C"/>
|
|
<arg value="${install.dir}"/>
|
|
</exec>
|
|
|
|
</target>
|
|
|
|
</project> |