mirror of
https://github.com/pygos/build.git
synced 2024-11-05 11:37:10 +01:00
26 lines
618 B
Text
Executable file
26 lines
618 B
Text
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"
|
|
}
|