1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-06-30 06:50:14 +02:00
build/pkg/sqlite3/build
David Oberhollenzer f962a88bba Bump sqlite3 version
Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
2019-03-31 13:02:11 +02:00

27 lines
632 B
Plaintext
Executable file

VERSION="3270200"
SRCDIR="sqlite-autoconf-${VERSION}"
TARBALL="${SRCDIR}.tar.gz"
URL="https://sqlite.org/2019"
SHA256SUM="50c39e85ea28b5ecfdb3f9e860afe9ba606381e21836b2849efca6a0bfe6ef6e"
DEPENDS="readline-dev zlib-dev toolchain"
prepare() {
return
}
build() {
run_configure "$1" --enable-readline --disable-static-shell
make -j $NUMJOBS
}
deploy() {
make DESTDIR="$PKGDEPLOYDIR" install
cp $SCRIPTDIR/pkg/$PKGNAME/*.{files,desc} "$PKGDEPLOYDIR"
}
check_update() {
curl --silent -L https://sqlite.org/download.html | \
grep -o sqlite-autoconf-[0-9]*.tar.gz | grep -o [0-9]* | \
verson_find_greatest "$VERSION"
}