<project name="Copy MyST License">
  <target name="copy-license" >
  	<echo message="Will unpack the license: ${myst.license} to ${license.dest.dir}"/>
  	<untar src="${myst.license}" dest="${license.dest.dir}" compression="gzip"/>
  	<echo message="Copying ${license.dest.dir}/api.key to ${api.dest.dir}/api.key"/>
  	<copy tofile="${api.dest.dir}/api.key" file="${license.dest.dir}/api.key"/>
  </target>
</project>