2018-11-27 14:15:51 +01:00
|
|
|
VERSION="3250300"
|
2018-01-22 01:45:01 +01:00
|
|
|
SRCDIR="sqlite-autoconf-${VERSION}"
|
|
|
|
TARBALL="${SRCDIR}.tar.gz"
|
2018-02-10 11:48:31 +01:00
|
|
|
URL="https://sqlite.org/2018/"
|
2018-11-27 14:15:51 +01:00
|
|
|
SHA256SUM="00ebf97be13928941940cc71de3d67e9f852698233cd98ce2d178fd08092f3dd"
|
2019-03-30 23:28:30 +01:00
|
|
|
DEPENDS="readline-dev toolchain"
|
2018-01-22 01:45:01 +01:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
2018-09-02 14:19:23 +02:00
|
|
|
run_configure "$1" --disable-tcl
|
2018-01-22 01:45:01 +01:00
|
|
|
make -j $NUMJOBS
|
|
|
|
}
|
|
|
|
|
|
|
|
deploy() {
|
2019-03-06 10:03:12 +01:00
|
|
|
make DESTDIR="$PKGDEPLOYDIR" install
|
|
|
|
cp $SCRIPTDIR/pkg/$PKGNAME/*.{files,desc} "$PKGDEPLOYDIR"
|
2018-01-22 01:45:01 +01:00
|
|
|
}
|
2018-05-06 17:23:31 +02:00
|
|
|
|
|
|
|
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"
|
2019-03-06 10:03:12 +01:00
|
|
|
}
|