source: release-kits/lirk2/installer/build.xml@ 17650

Last change on this file since 17650 was 17650, checked in by oranfry, 15 years ago

installer config changes for source releases in lirk2

File size: 6.4 KB
Line 
1<?xml version="1.0"?>
2<!--
3This is the build.xml run by AntInstaller for the installer
4-->
5
6<project name="Installation">
7
8 <!-- this is required to pick up the properties generated during the install pages -->
9 <property file="${basedir}/ant.install.properties"/>
10
11 <path id="project.classpath">
12 <pathelement path="${antinstaller.jar}"/>
13 </path>
14
15 <!-- custom tasks -->
16 <typedef name="rsr" classname="org.greenstone.anttasks.RegexSearchReplace" classpathref="project.classpath"/>
17 <typedef name="adduser" classname="org.greenstone.anttasks.AddGreenstoneUserToDatabase" classpathref="project.classpath"/>
18 <taskdef name="sevenzip" classname="org.apache.tools.ant.SevenZip" classpathref="project.classpath"/>
19
20 <condition property="bundled.java.exists">
21 <available file="../@linux-java.extracted@/bin/java"/>
22 </condition>
23
24
25 <!-- core system -->
26 <target name="Installing Core System">
27
28 <echo>basedir: ${basedir}</echo>
29 <echo>installDir: ${installDir}</echo>
30 <echo>antinstaller.jar: ${antinstaller.jar}</echo>
31
32 <echo>Creating Installation directory</echo>
33 <mkdir dir="${installDir}"/>
34
35 <echo>Installing Core Files</echo>
36 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="core.lzma"/></patternset></unzip>
37 <sevenzip task="decode" input="${basedir}/core.lzma" output="${basedir}/core.comp"/>
38 <delete file="core.lzma"/>
39 <unzip src="${basedir}/core.comp" dest="${installDir}"/>
40 <delete file="core.comp"/>
41
42 <echo message="Installing Servers"/>
43 <copy tofile="${installDir}/cgi-bin/oaiserver" file="${installDir}/bin/linux/oaiserver"/>
44 <copy tofile="${installDir}/cgi-bin/library" file="${installDir}/bin/linux/library"/>
45
46 <!-- jre -->
47 <copy todir="${installDir}/packages/jre" failonerror="false">
48 <fileset dir="../@linux-java.extracted@"/>
49 </copy>
50 <chmod dir="${installDir}/packages/jre/bin" includes="*" perm="775"/>
51
52 <echo>Setting Binaries to Executable</echo>
53 <chmod dir="${installDir}" includes="*.sh,*.bash" perm="775"/>
54 <chmod dir="${installDir}/bin/linux" includes="*" perm="775"/>
55 <chmod dir="${installDir}/bin" includes="*" perm="775"/>
56 <chmod dir="${installDir}/cgi-bin" includes="*" perm="775"/>
57 <chmod dir="${installDir}/bin/script" includes="**/*" perm="775"/>
58 <chmod dir="${installDir}/gli" includes="*.sh" perm="775"/>
59 <echo/>
60
61 <echo>Filling in concrete values in config files</echo>
62 <rsr file="${installDir}/cgi-bin/gsdlsite.cfg" pattern="\*\*GSDLHOME\*\*" replacement="${installDir}"/>
63 <rsr file="${installDir}/cgi-bin/gsdlsite.cfg" pattern="^(#?httpprefix).*" replacement="$1 /gsdl"/>
64 <rsr file="${installDir}/cgi-bin/gsdlsite.cfg" pattern="^(#?httpimg).*" replacement="$1 /gsdl/images"/>
65 <echo/>
66
67 <echo>Creating admin and demo users</echo>
68 <adduser txt2db="${installDir}/bin/linux/txt2db"
69 usersDb="${installDir}/etc/users.db"
70 username="admin"
71 password="${admin.password}"
72 groups="administrator,colbuilder"
73 comment="created at install time"/>
74 <adduser
75 txt2db="${installDir}/bin/linux/txt2db"
76 usersDb="${installDir}/etc/users.db"
77 username="demo"
78 password="demo"
79 groups="demo"
80 comment="Dummy 'demo' user with password 'demo' for authen-e collection"/>
81
82 <echo>Set the installation locale in config files</echo>
83 <rsr file="${installDir}/setup.bash" pattern="^gsdllang=.*" replacement="gsdllang=${language}"/>
84 <rsr file="${installDir}/gli/gli.sh" pattern="^glilang=.*" replacement="glilang=${language}"/>
85 <rsr file="${installDir}/gli/gems.sh" pattern="^glilang=.*" replacement="glilang=${language}"/>
86
87 <rsr
88 file="${installDir}/gli/classes/xml/config.xml"
89 pattern="(&lt;Argument name=&quot;general.locale&quot;&gt;).*(&lt;/Argument&gt;)"
90 replacement="$1${language}$2"/>
91
92 <echo file="${installDir}/etc/main.cfg" append="true"
93 >cgiarg shortname=l argdefault=${language}</echo>
94
95 <rsr file="${installDir}/etc/main.cfg" pattern="^status .*" replacement="status enabled"/>
96
97 <echo>Creating installation properties file</echo>
98 <echo file="${installDir}/etc/installation.properties">#this file is just a placeholder for now</echo>
99
100 <echo message="Finished"/>
101
102 </target>
103
104 <!-- sourcecode core system -->
105 <target name="Installing Source Code Core">
106
107 <echo>Installing Source Code Core</echo>
108 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="sourcecode-core.lzma"/></patternset></unzip>
109 <sevenzip task="decode" input="${basedir}/sourcecode-core.lzma" output="${basedir}/sourcecode-core.comp"/>
110 <delete file="sourcecode-core.lzma"/>
111 <unzip src="${basedir}/sourcecode-core.comp" dest="${installDir}"/>
112 <delete file="sourcecode-core.comp"/>
113
114 <echo>Set the installation locale in config files</echo>
115 <rsr file="${installDir}/setup.bash" pattern="^gsdllang=.*" replacement="gsdllang=${language}"/>
116 <rsr file="${installDir}/gli/gli.sh" pattern="^glilang=.*" replacement="glilang=${language}"/>
117 <rsr file="${installDir}/gli/gems.sh" pattern="^glilang=.*" replacement="glilang=${language}"/>
118
119 <rsr
120 file="${installDir}/gli/classes/xml/config.xml"
121 pattern="(&lt;Argument name=&quot;general.locale&quot;&gt;).*(&lt;/Argument&gt;)"
122 replacement="$1${language}$2"/>
123
124 <echo file="${installDir}/etc/main.cfg" append="true"
125 >cgiarg shortname=l argdefault=${language}</echo>
126
127 <rsr file="${installDir}/etc/main.cfg" pattern="^status .*" replacement="status enabled"/>
128
129 <echo>Creating installation properties file</echo>
130 <echo file="${installDir}/etc/installation.properties">#this file is just a placeholder for now</echo>
131
132 </target>
133
134
135 <!-- source code -->
136 <target name="Installing Source Code">
137 <echo>Installing Source Code</echo>
138 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="sourcecode.lzma"/></patternset></unzip>
139 <sevenzip task="decode" input="${basedir}/sourcecode.lzma" output="${basedir}/sourcecode.comp"/>
140 <delete file="sourcecode.lzma"/>
141 <unzip src="${basedir}/sourcecode.comp" dest="${installDir}"/>
142 <delete file="sourcecode.comp"/>
143 </target>
144
145 <!-- imagemagick -->
146 <target name="Installing ImageMagick">
147 <echo>Installing ImageMagick</echo>
148 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="imagemagick.lzma"/></patternset></unzip>
149 <sevenzip task="decode" input="${basedir}/imagemagick.lzma" output="${basedir}/imagemagick.comp"/>
150 <delete file="imagemagick.lzma"/>
151 <unzip src="${basedir}/imagemagick.comp" dest="${installDir}/bin/linux"/>
152 <delete file="imagemagick.comp"/>
153 </target>
154
155</project>
Note: See TracBrowser for help on using the repository browser.