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