mirror of
https://github.com/harness/drone.git
synced 2025-05-12 06:59:54 +08:00
12 lines
230 B
Bash
12 lines
230 B
Bash
#!/bin/bash
|
|
|
|
cd /tmp
|
|
|
|
curl -O https://www.sqlite.org/2015/sqlite-autoconf-3081101.tar.gz
|
|
tar xzf sqlite-autoconf-3081101.tar.gz
|
|
cd sqlite-autoconf-3081101
|
|
cd sqlite-3.6.421
|
|
./configure -prefix=/scratch/usr/local
|
|
make
|
|
make install
|