aboutsummaryrefslogtreecommitdiff
path: root/build.xml
blob: 3fe2799efd135f55ccf2117239019b6592f5946e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="utf-8"?>
<project name="SemanticScuttle" default="dist" basedir=".">
  <!--
    SemanticScuttle phing build file.
    This script should provide a one-stop tool for all administrative
    tasks around SemanticScuttle, like creating a release version,
    tagging a release, running unit tests etc.
  -->
  <property name="version" value="0.95.0"/>

  <target name="dist"><!-- depends="build">-->
    <!--
      The release file is for end users, so it is safe to
      remove anything developer-related.

      Test your zip with: unzip -l SemanticScuttle-0.95.0.zip
    -->
    <echo msg="Creating distribution zip for SemanticScuttle ${version}"/>
    <delete file="SemanticScuttle-${version}.zip" failonerror="false"/>
    <zip destfile="SemanticScuttle-${version}.zip" prefix="SemanticScuttle-${version}/">
      <fileset dir=".">
        <include name="**"/>
        <exclude name="**/.gitignore"/>
        <exclude name="**/.svn/"/>
        <exclude name=".git/"/>
        <exclude name="cache/"/>
        <exclude name="tests/"/>
        <exclude name="scripts/"/>
        <exclude name="build.xml"/>
        <exclude name="data/config.php"/>
        <exclude name="data/locales/messages.po"/>
        <exclude name="data/locales/*/LC_MESSAGES/messages.po"/>
        <exclude name="doc/developers/"/>
        <exclude name="SemanticScuttle-*"/>
        <exclude name="src/php-gettext/examples/" />
        <exclude name="src/php-gettext/bin/"/>
      </fileset>
    </zip>
  </target>

</project>