build.p5exslt.INSTALL.xml 896 B

123456789101112131415161718
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project basedir="../../." default="INSTALL" name="p5exslt.INSTALL">
  3. <include file="build.p5exslt.PRODUCT.xml" />
  4. <include as="git" file="build.p5exslt.INSTALL.git.xml" optional="yes" />
  5. <property location="${p5exslt.install}/install_example.file" name="p5exslt.INSTALL.install_example" />
  6. <condition property="p5exslt.INSTALL.install_example.ifdef" taskname="INSTALL.install_example">
  7. <not>
  8. <available file="${p5exslt.repository}/install_example.file" />
  9. </not>
  10. </condition>
  11. <target if="p5exslt.git.url" name="git">
  12. <antcall target="git.default" />
  13. </target>
  14. <target depends="git,INSTALL.install_example" name="INSTALL" />
  15. <target if="p5exslt.INSTALL.install_example.ifdef" name="INSTALL.install_example">
  16. <copy file="${p5exslt.INSTALL.install_example}" tofile="${p5exslt.install_example}" />
  17. </target>
  18. </project>