Subversion Repositories Tewi

Rev

Rev 187 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 187 Rev 193
Line 1... Line 1...
1
#!/bin/sh
1
#!/bin/sh
2
# $Id: psp.sh 187 2024-09-28 00:07:34Z nishi $
2
# $Id: psp.sh 193 2024-09-29 05:55:18Z nishi $
3
export PSPDEV=/usr/local/pspdev
3
export PSPDEV=/usr/local/pspdev
4
export PATH=$PATH:/usr/local/pspdev/bin
4
export PATH=$PATH:/usr/local/pspdev/bin
5
cat config.h.tmpl | sed -E 's/#undef (NO_SSL)/#define \1/g' > config.h
5
cat config.h.tmpl | sed -E 's/#undef (NO_SSL)/#define \1/g' > config.h
6
rm -rf httpd
6
rm -rf httpd
7
make PLATFORM=psp DESTDIR=httpd/ install
7
make PLATFORM=psp DESTDIR=httpd/ install || exit 1
8
mv httpd/ms0:/PSP/GAME/httpd/* httpd/
8
mv httpd/ms0:/PSP/GAME/httpd/* httpd/
9
rm -rf httpd/lib httpd/bin
9
rm -rf httpd/lib httpd/bin
10
rm -rf httpd/ms0:
10
rm -rf httpd/ms0:
11
cp Server/tewi.pbp httpd/EBOOT.PBP
11
cp Server/tewi.pbp httpd/EBOOT.PBP
12
echo "Tewi HTTPd $(make get-version) for PSP" > httpd/README
12
echo "Tewi HTTPd $(make get-version) for PSP" > httpd/README
13
echo "========================" >> httpd/README
13
echo "========================" >> httpd/README
14
echo "To install, just copy this \`httpd' folder into your /PSP/GAME of the PSP memorystick." >> httpd/README
14
echo "To install, just copy this \`httpd' folder into your /PSP/GAME of the PSP memorystick." >> httpd/README
15
cat httpd/readme
15
cat httpd/README
16
rm -f tewidist.zip
16
rm -f tewidist.zip
17
zip -rv tewidist.zip httpd
17
zip -rv tewidist.zip httpd
18
rm -rf httpd
18
rm -rf httpd