mirror of
https://github.com/kennethreitz/bob-builder-1.git
synced 2026-06-05 23:10:17 +00:00
24 lines
356 B
Bash
Executable File
24 lines
356 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Options: <output-dir>
|
|
# Build Path: /app/.heroku/python/
|
|
|
|
OUT_PREFIX=$1
|
|
|
|
echo "Building SQLite..."
|
|
|
|
|
|
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
|