structure is flowing

This commit is contained in:
Kenneth Reitz
2014-03-06 13:13:31 -05:00
parent 575f9e9d44
commit 8907e22e66
8 changed files with 144 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
#!/usr/bin/env bash
# Usage: $ build.sh <output-dir>
OUT_PREFIX=$1
SOURCE_TARBALL='http://www.sqlite.org/sqlite-autoconf-3070900.tar.gz'
curl $SOURCE_TARBALL | tar xz
# jx
mv sqlite-autoconf-3070900 sqlite
cd sqlite
./configure --prefix=$OUT_PREFIX
make
make install
# Cleanup
cd ..
rm -fr sqlite