diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-02-18 12:56:22 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-02-18 12:56:22 -0500 |
commit | 13984f725db156cbc952d0afe90f27da15a0b85d (patch) | |
tree | b3a39b75ecaecca11ee1525a99153a7606e460cb /sqlite | |
download | spm_packages-13984f725db156cbc952d0afe90f27da15a0b85d.tar.gz |
Initial commit
Diffstat (limited to 'sqlite')
-rw-r--r-- | sqlite/build.sh | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/sqlite/build.sh b/sqlite/build.sh new file mode 100644 index 0000000..45b6973 --- /dev/null +++ b/sqlite/build.sh @@ -0,0 +1,33 @@ +#!/bin/bash +name=sqlite +version=3.29.0 +_v=3290000 +revision=0 +sources=( + "https://sqlite.org/2019/${name}-autoconf-${_v}.tar.gz" +) +build_depends=( + "automake" + "autoconf" + "readline" + "zlib" +) +depends=( + "readline" + "zlib" +) + + +function prepare() { + tar xf ${name}-autoconf-${_v}.tar.gz + cd ${name}-autoconf-${_v} +} + +function build() { + ./configure --prefix=${_prefix} + make -j${_maxjobs} +} + +function package() { + make install DESTDIR="${_pkgdir}" +} |