mirror of
https://github.com/termux/termux-packages.git
synced 2025-05-10 06:55:47 +00:00
- Isn't compatible with newer `boost` APIs - Last commit was 4 years - No packages depend upon it Signed-off-by: Aditya Alok <alok@termux.dev>
48 lines
1.4 KiB
Bash
48 lines
1.4 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://upscaledb.com/
|
|
TERMUX_PKG_DESCRIPTION="A database engine written in C/C++"
|
|
TERMUX_PKG_LICENSE="Apache-2.0"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
_COMMIT=cb124e1f91601872a7b3bd4da10e5fa97a8da86b
|
|
_COMMIT_DATE=2021.08.20
|
|
TERMUX_PKG_VERSION=2.2.1p${_COMMIT_DATE//./}
|
|
TERMUX_PKG_REVISION=9
|
|
TERMUX_PKG_SRCURL=git+https://github.com/cruppstahl/upscaledb
|
|
TERMUX_PKG_SHA256=83e26f9f099897f347129470b494487bddf96c3d09ab4747251135d47d8b4256
|
|
TERMUX_PKG_AUTO_UPDATE=false
|
|
TERMUX_PKG_GIT_BRANCH=master
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
TERMUX_PKG_DEPENDS="boost, libc++, libsnappy, openssl, zlib"
|
|
TERMUX_PKG_BUILD_DEPENDS="boost-headers"
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
|
--disable-simd
|
|
--disable-java
|
|
--disable-remote
|
|
--with-boost=$TERMUX_PREFIX
|
|
--without-tcmalloc
|
|
--without-berkeleydb
|
|
"
|
|
|
|
termux_step_post_get_source() {
|
|
git fetch --unshallow
|
|
git checkout $_COMMIT
|
|
|
|
local version="$(git log -1 --format=%cs | sed 's/-/./g')"
|
|
if [ "$version" != "$_COMMIT_DATE" ]; then
|
|
echo -n "ERROR: The specified commit date \"$_COMMIT_DATE\""
|
|
echo " is different from what is expected to be: \"$version\""
|
|
return 1
|
|
fi
|
|
|
|
local s=$(find . -type f ! -path '*/.git/*' -print0 | xargs -0 sha256sum | LC_ALL=C sort | sha256sum)
|
|
if [[ "${s}" != "${TERMUX_PKG_SHA256} "* ]]; then
|
|
termux_error_exit "Checksum mismatch for source files."
|
|
fi
|
|
}
|
|
|
|
termux_step_pre_configure() {
|
|
sh bootstrap.sh
|
|
|
|
CPPFLAGS+=" -DBOOST_TIMER_ENABLE_DEPRECATED"
|
|
LDFLAGS+=" $($CC -print-libgcc-file-name)"
|
|
}
|