OLD | NEW |
1 #!/bin/sh | 1 #!/bin/sh |
2 # | 2 # |
3 # This script is used to compile SQLite and package everything up | 3 # This script is used to compile SQLite and package everything up |
4 # so that it is ready to move to the SQLite website. | 4 # so that it is ready to move to the SQLite website. |
5 # | 5 # |
6 | 6 |
7 # Set srcdir to the name of the directory that contains the publish.sh | 7 # Set srcdir to the name of the directory that contains the publish.sh |
8 # script. | 8 # script. |
9 # | 9 # |
10 srcdir=`echo "$0" | sed 's%\(^.*\)/[^/][^/]*$%\1%'` | 10 srcdir=`echo "$0" | sed 's%\(^.*\)/[^/][^/]*$%\1%'` |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 # copy the RPMs into the build directory. | 129 # copy the RPMs into the build directory. |
130 mv $HOME/rpm/RPMS/i386/sqlite*-$vers*.rpm doc | 130 mv $HOME/rpm/RPMS/i386/sqlite*-$vers*.rpm doc |
131 mv $HOME/rpm/SRPMS/sqlite-$vers*.rpm doc | 131 mv $HOME/rpm/SRPMS/sqlite-$vers*.rpm doc |
132 | 132 |
133 # Build the website | 133 # Build the website |
134 # | 134 # |
135 #cp $srcdir/../historical/* doc | 135 #cp $srcdir/../historical/* doc |
136 #make doc | 136 #make doc |
137 #cd doc | 137 #cd doc |
138 #chmod 644 *.gz | 138 #chmod 644 *.gz |
OLD | NEW |