build.apache_fop.INSTALL.xml 1.0 KB

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