| 27 | | |
|---|
| 28 | | <!-- install binaries and set executable --> |
|---|
| 29 | | <echo message="Installing Executable Binaries (bin)"/> |
|---|
| 30 | | <unzip src="${antinstaller.jar}" dest="${installDir}"><patternset><include name="bin/**/*"/></patternset></unzip> |
|---|
| 31 | | <echo/> |
|---|
| 32 | | |
|---|
| 33 | | <echo message="Installing Documentation (docs)"/> |
|---|
| 34 | | <unzip src="${antinstaller.jar}" dest="${installDir}"><patternset><include name="docs/**/*"/></patternset></unzip> |
|---|
| 35 | | <echo/> |
|---|
| 36 | | |
|---|
| 37 | | <echo message="Installing GLI (gli)"/> |
|---|
| 38 | | <unzip src="${antinstaller.jar}" dest="${installDir}"><patternset><include name="gli/**/*"/></patternset></unzip> |
|---|
| 39 | | <echo/> |
|---|
| 40 | | |
|---|
| 41 | | <echo message="Installing gs2build (gs2build)"/> |
|---|
| 42 | | <unzip src="${antinstaller.jar}" dest="${installDir}"><patternset><include name="gs2build/**/*"/></patternset></unzip> |
|---|
| 43 | | <echo/> |
|---|
| 44 | | |
|---|
| 45 | | <echo message="Installing Libraries (lib)"/> |
|---|
| 46 | | <unzip src="${antinstaller.jar}" dest="${installDir}"><patternset><include name="lib/**/*"/></patternset></unzip> |
|---|
| 47 | | <echo/> |
|---|
| 48 | | |
|---|
| 49 | | <echo message="Installing Web Content (web)"/> |
|---|
| 50 | | <unzip src="${antinstaller.jar}" dest="${installDir}"><patternset><include name="web/**/*"/></patternset></unzip> |
|---|
| 51 | | <echo/> |
|---|
| 52 | | |
|---|
| 53 | | <echo message="Installing Resources (resources)"/> |
|---|
| 54 | | <unzip src="${antinstaller.jar}" dest="${installDir}"><patternset><include name="resources/**/*"/></patternset></unzip> |
|---|
| 55 | | <echo/> |
|---|
| 56 | | |
|---|
| 57 | | <echo message="Installing Top Level Files"/> |
|---|
| | 27 | <!-- install files --> |
|---|
| | 28 | <echo message="Installing Files"/> |
|---|
| 60 | | <include name="build.xml"/> |
|---|
| | 31 | |
|---|
| | 32 | <include name="bin/**/*"/> |
|---|
| | 33 | <include name="docs/**/*"/> |
|---|
| | 34 | <include name="gli/**/*"/> |
|---|
| | 35 | <include name="gs2build/**/*"/> |
|---|
| | 36 | <include name="lib/**/*"/> |
|---|
| | 37 | <include name="web/**/*"/> |
|---|
| | 38 | <include name="resources/**/*"/> |
|---|
| | 39 | |
|---|
| | 40 | <include name="greenstone3-build.xml"/> |
|---|