author | mark <mark> | 2002-02-04 21:09:13 (UTC) |
---|---|---|
committer | mark <mark> | 2002-02-04 21:09:13 (UTC) |
commit | ad32a5ffb9fcc666977c93fc074741fdfe22e5c4 (patch) (unidiff) | |
tree | d453aa891b8c63eb7c078ac55663b223974cf10a | |
parent | 4b769e6189666065937c8c34ba131d5ed6e66dfb (diff) | |
download | opie-ad32a5ffb9fcc666977c93fc074741fdfe22e5c4.zip opie-ad32a5ffb9fcc666977c93fc074741fdfe22e5c4.tar.gz opie-ad32a5ffb9fcc666977c93fc074741fdfe22e5c4.tar.bz2 |
Read in $SUB_VERSION from library/version.h
-rwxr-xr-x | mkipks | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1,37 +1,38 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | 2 | ||
3 | QTE_VERSION=2.3.2 | 3 | QTE_VERSION=2.3.2 |
4 | DEB_VERSION=2.0 | 4 | DEB_VERSION=2.0 |
5 | 5 | ||
6 | # Have to do this here, since CVS can't store symlinks | 6 | # Have to do this here, since CVS can't store symlinks |
7 | mkdir -p etc/rc2.d | 7 | mkdir -p etc/rc2.d |
8 | rm -f etc/rc2.d/S98qpe | 8 | rm -f etc/rc2.d/S98qpe |
9 | ln -s ../init.d/qpe etc/rc2.d/S98qpe | 9 | ln -s ../init.d/qpe etc/rc2.d/S98qpe |
10 | 10 | ||
11 | VERSION_MAJ=$(sed -n -e 's/.*QPE_VERSION "\([0-9]*\)\..*\..*".*/\1/p' <$OPIEDIR/include/qpe/version.h) | 11 | VERSION_MAJ=$(sed -n -e 's/.*QPE_VERSION "\([0-9]*\)\..*\..*".*/\1/p' <$OPIEDIR/include/qpe/version.h) |
12 | VERSION_MIN=$(sed -n -e 's/.*QPE_VERSION ".*\.\([0-9]*\)\..*".*/\1/p' <$OPIEDIR/include/qpe/version.h) | 12 | VERSION_MIN=$(sed -n -e 's/.*QPE_VERSION ".*\.\([0-9]*\)\..*".*/\1/p' <$OPIEDIR/include/qpe/version.h) |
13 | VERSION_PAT=$(sed -n -e 's/.*QPE_VERSION ".*\..*\.\([0-9]*\).*/\1/p' <$OPIEDIR/include/qpe/version.h) | 13 | VERSION_PAT=$(sed -n -e 's/.*QPE_VERSION ".*\..*\.\([0-9]*\).*/\1/p' <$OPIEDIR/include/qpe/version.h) |
14 | SUB_VERSION=$(sed -n -e 's,.*SUB_VERSION \"\(.*\)\".*,\1,p' <$OPIEDIR/include/qpe/version.h) | ||
14 | if grep -q 'QPE_VERSION .*snapshot' $OPIEDIR/include/qpe/version.h | 15 | if grep -q 'QPE_VERSION .*snapshot' $OPIEDIR/include/qpe/version.h |
15 | then | 16 | then |
16 | VERSION_CVS="_$(date +%Y%m%d)" | 17 | VERSION_CVS="_$(date +%Y%m%d)" |
17 | else | 18 | else |
18 | VERSION_CVS="" | 19 | VERSION_CVS="" |
19 | fi | 20 | fi |
20 | 21 | ||
21 | QPE_VERSION=$VERSION_MAJ.$VERSION_MIN.$VERSION_PAT | 22 | QPE_VERSION=$VERSION_MAJ.$VERSION_MIN.$VERSION_PAT |
22 | 23 | ||
23 | ARCH=arm | 24 | ARCH=arm |
24 | STRIP=arm-linux-strip | 25 | STRIP=arm-linux-strip |
25 | STRIP_FILES="*Advanced RISC Machines ARM*not stripped" | 26 | STRIP_FILES="*Advanced RISC Machines ARM*not stripped" |
26 | 27 | ||
27 | TDIR=/tmp/ipk$$ | 28 | TDIR=/tmp/ipk$$ |
28 | DATADIR=$TDIR/data | 29 | DATADIR=$TDIR/data |
29 | CTRLDIR=$TDIR/control | 30 | CTRLDIR=$TDIR/control |
30 | 31 | ||
31 | IMAGEDIR= | 32 | IMAGEDIR= |
32 | VERB= | 33 | VERB= |
33 | LIST= | 34 | LIST= |
34 | RPM= | 35 | RPM= |
35 | 36 | ||
36 | while [ $# -ne 0 ] | 37 | while [ $# -ne 0 ] |
37 | do | 38 | do |