| OLD | NEW |
| 1 #!/bin/sh | 1 #!/bin/sh |
| 2 # This script is used to build the amalgamation autoconf package. | 2 # This script is used to build the amalgamation autoconf package. |
| 3 # It assumes the following: | 3 # It assumes the following: |
| 4 # | 4 # |
| 5 # 1. The files "sqlite3.c", "sqlite3.h" and "sqlite3ext.h" | 5 # 1. The files "sqlite3.c", "sqlite3.h" and "sqlite3ext.h" |
| 6 # are available in the current directory. | 6 # are available in the current directory. |
| 7 # | 7 # |
| 8 # 2. Variable $TOP is set to the full path of the root directory | 8 # 2. Variable $TOP is set to the full path of the root directory |
| 9 # of the SQLite source tree. | 9 # of the SQLite source tree. |
| 10 # | 10 # |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 autoconf | 74 autoconf |
| 75 rm -rf autom4te.cache | 75 rm -rf autom4te.cache |
| 76 | 76 |
| 77 cd ../ | 77 cd ../ |
| 78 ./configure && make dist | 78 ./configure && make dist |
| 79 tar -xzf sqlite-$VERSION.tar.gz | 79 tar -xzf sqlite-$VERSION.tar.gz |
| 80 mv sqlite-$VERSION sqlite-autoconf-$ARTIFACT | 80 mv sqlite-$VERSION sqlite-autoconf-$ARTIFACT |
| 81 tar -czf sqlite-autoconf-$ARTIFACT.tar.gz sqlite-autoconf-$ARTIFACT | 81 tar -czf sqlite-autoconf-$ARTIFACT.tar.gz sqlite-autoconf-$ARTIFACT |
| 82 mv sqlite-autoconf-$ARTIFACT.tar.gz .. | 82 mv sqlite-autoconf-$ARTIFACT.tar.gz .. |
| 83 | 83 |
| OLD | NEW |