diff options
author | Christian Weiske <cweiske@cweiske.de> | 2010-08-22 01:04:03 +0200 |
---|---|---|
committer | Christian Weiske <cweiske@cweiske.de> | 2010-08-22 01:04:03 +0200 |
commit | eaa847a93d4b9d0c77d70ef219836b9f89bd67c7 (patch) | |
tree | cd9acf023ce86826e720a36a02b4d23336a89e7f /build.xml | |
parent | 4d9b6950cf280e718354eb5888ae41ef04b9afb8 (diff) | |
download | semanticscuttle-eaa847a93d4b9d0c77d70ef219836b9f89bd67c7.tar.gz semanticscuttle-eaa847a93d4b9d0c77d70ef219836b9f89bd67c7.tar.bz2 |
package.xml now looks really good
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 22 |
1 files changed, 19 insertions, 3 deletions
@@ -102,9 +102,9 @@ <!-- do not add the following file to the package --> <ignore>build*</ignore> - <ignore>dist</ignore> + <ignore>dist/**</ignore> <ignore>doc/developers</ignore> - <ignore>scripts</ignore> + <ignore>scripts/**</ignore> <ignore>**/messages.po</ignore> <changelog version="0.97" date="2010-06-09" license="GPL"> @@ -147,9 +147,25 @@ /> <!-- install-as for different directories --> <regexp - pattern="(<file name="data/(.+)")" + pattern="(<file name="data/(.+?)")" + replace="\1 install-as="\2"" + /> + <regexp + pattern="(<file name="doc/(.+?)")" + replace="\1 install-as="\2"" + /> + <regexp + pattern="(<file name="tests/(.+?)")" + replace="\1 install-as="\2"" + /> + <regexp + pattern="(<file name="www/(.+?)")" replace="\1 install-as="SemanticScuttle/\2"" /> + <regexp + pattern="(<file name="src/(.+?)")" + replace="\1 install-as="\2"" + /> </replaceregexp> </filterchain> </copy> |