mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-10 23:02:01 +00:00
- add TA patch pk3s to installation
- some cleanups in the installer UI - reduce verbosiveness of preuninstall script
This commit is contained in:
parent
4d062b1b84
commit
4a084a46a8
3 changed files with 26 additions and 16 deletions
|
@ -60,10 +60,14 @@ rm -rf image/tmp
|
||||||
|
|
||||||
# patch pk3 files
|
# patch pk3 files
|
||||||
install -m 644 ./idpatchpk3s.tar image/idpatchpk3s.tar
|
install -m 644 ./idpatchpk3s.tar image/idpatchpk3s.tar
|
||||||
|
install -m 644 ./idtapatchpk3s.tar image/idtapatchpk3s.tar
|
||||||
|
|
||||||
### setup.xml
|
### setup.xml
|
||||||
sed 's/@VERSION@/'$VERSION'/g' < setup.xml > image/setup.data/setup.xml
|
sed 's/@VERSION@/'$VERSION'/g' < setup.xml > image/setup.data/setup.xml
|
||||||
|
|
||||||
|
### uninstall script
|
||||||
|
install -m 755 ./preuninstall.sh image/preuninstall.sh
|
||||||
|
|
||||||
### start script
|
### start script
|
||||||
mkdir -p image/bin/Linux/x86
|
mkdir -p image/bin/Linux/x86
|
||||||
mkdir -p image/bin/Linux/x86_64
|
mkdir -p image/bin/Linux/x86_64
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
rm COPYING
|
rm -f COPYING
|
||||||
rmdir --ignore-fail-on-non-empty demoq3 missionpack
|
rmdir --ignore-fail-on-non-empty demoq3 missionpack >& /dev/null
|
||||||
|
|
|
@ -14,13 +14,13 @@
|
||||||
id_patch_pk3s_Q3A_EULA.txt
|
id_patch_pk3s_Q3A_EULA.txt
|
||||||
</eula>
|
</eula>
|
||||||
|
|
||||||
<component name="Quake3 Arena gamedata" version="@VERSION@" showname="no" default="yes">
|
<component name="Quake3 Arena gamedata" version="@VERSION@" default="yes">
|
||||||
<option install="true" size="457M">
|
<option size="457M">
|
||||||
<help>
|
<help>
|
||||||
If you don't select this, you must make sure to copy pak0.pk3 to the
|
If you don't select this, you must make sure to copy pak0.pk3 to the
|
||||||
baseq3 directory manually.
|
baseq3 directory manually.
|
||||||
</help>
|
</help>
|
||||||
Quake3 Arena gamedata
|
Copy Quake3 Arena CD data
|
||||||
<files cdromid="CD 1" path="baseq3" size="457M">
|
<files cdromid="CD 1" path="baseq3" size="457M">
|
||||||
Quake3/baseq3/pak0.pk3
|
Quake3/baseq3/pak0.pk3
|
||||||
</files>
|
</files>
|
||||||
|
@ -35,19 +35,25 @@
|
||||||
</option>
|
</option>
|
||||||
</component>
|
</component>
|
||||||
|
|
||||||
<component name="Quake3 Team Arena gamedata" version="@VERSION@" showname="no" default="yes">
|
<component name="Quake3 Team Arena gamedata" version="@VERSION@">
|
||||||
<option install="true" size="457M">
|
<option>
|
||||||
<help>
|
Install Team Arena components.
|
||||||
If you don't select this, you must make sure to copy the TA pak0.pk3 to the
|
<files path="missionpack">
|
||||||
missionpack directory manually.
|
idtapatchpk3s.tar
|
||||||
</help>
|
|
||||||
Quake3 Team Arena gamedata
|
|
||||||
<files cdromid="CD 2" path="missionpack" size="457M">
|
|
||||||
Setup/missionpack/pak0.pk3
|
|
||||||
</files>
|
</files>
|
||||||
|
<option size="457M">
|
||||||
|
<help>
|
||||||
|
If you don't select this, you must make sure to copy the TA pak0.pk3 to the
|
||||||
|
missionpack directory manually.
|
||||||
|
</help>
|
||||||
|
Copy Quake3 Team Arena CD data
|
||||||
|
<files cdromid="CD 2" path="missionpack" size="457M">
|
||||||
|
Setup/missionpack/pak0.pk3
|
||||||
|
</files>
|
||||||
|
</option>
|
||||||
</option>
|
</option>
|
||||||
</component>
|
</component>
|
||||||
<component arch="x86_64" name="x86_64" version="@VERSION@" showname="no">
|
<component arch="x86_64" name="x86_64" version="@VERSION@">
|
||||||
<option arch="x86_64" install="true">
|
<option arch="x86_64" install="true">
|
||||||
64 bit binaries
|
64 bit binaries
|
||||||
<binary arch="any" libc="any" symlink="ioquake3" icon="quake3.png"
|
<binary arch="any" libc="any" symlink="ioquake3" icon="quake3.png"
|
||||||
|
@ -61,7 +67,7 @@
|
||||||
</option>
|
</option>
|
||||||
</component>
|
</component>
|
||||||
|
|
||||||
<component if="|(x86,x86_64)" name="i386" version="@VERSION@" showname="no">
|
<component if="|(x86,x86_64)" name="i386" version="@VERSION@">
|
||||||
<option arch="x86_64" install="true">
|
<option arch="x86_64" install="true">
|
||||||
32 bit binaries
|
32 bit binaries
|
||||||
<binary arch="any" libc="any" symlink="ioquake3" icon="quake3.png"
|
<binary arch="any" libc="any" symlink="ioquake3" icon="quake3.png"
|
||||||
|
|
Loading…
Reference in a new issue