1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-05-21 04:56:12 +02:00
build/pkg/sqlite3/build
David Oberhollenzer 969d777291 Sqlite3: enable column meta data
Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
2019-04-22 17:30:46 +02:00

27 lines
618 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"
SUBPKG="sqlite3 sqlite3-dev sqlite3-shell"
prepare() {
apply_patches
}
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() {
check_update_simple "https://sqlite.org/download.html" \
"sqlite-autoconf" "tar.gz"
}