mirror of
https://github.com/termux/termux-packages.git
synced 2024-12-12 00:10:52 +00:00
45 lines
1.5 KiB
Bash
45 lines
1.5 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://github.com/tdlib/telegram-bot-api
|
|
TERMUX_PKG_DESCRIPTION="Telegram Bot API server"
|
|
TERMUX_PKG_LICENSE="BSL-1.0"
|
|
TERMUX_PKG_MAINTAINER="@Sarisan"
|
|
TERMUX_PKG_SRCURL=git+https://github.com/tdlib/telegram-bot-api
|
|
_COMMIT=6d1b62b51bdc543c10f854aae751e160e5b7b9c5
|
|
_COMMIT_DATE=2024.10.31
|
|
TERMUX_PKG_VERSION=${_COMMIT_DATE//./}
|
|
TERMUX_PKG_SHA256=cf210ec318fbc40bf5febd74d942e0624997dc9a4dc1ff2dd78f76e693adf3e6
|
|
TERMUX_PKG_AUTO_UPDATE=false
|
|
TERMUX_PKG_GIT_BRANCH=master
|
|
TERMUX_PKG_HOSTBUILD=true
|
|
TERMUX_PKG_DEPENDS="libc++, openssl, zlib"
|
|
|
|
termux_step_get_source() {
|
|
rm -rf $TERMUX_PKG_SRCDIR
|
|
mkdir -p $TERMUX_PKG_SRCDIR
|
|
cd $TERMUX_PKG_SRCDIR
|
|
git clone --depth 1 --branch ${TERMUX_PKG_GIT_BRANCH} \
|
|
${TERMUX_PKG_SRCURL#git+} .
|
|
git fetch --unshallow
|
|
git checkout $_COMMIT
|
|
git submodule update --init --recursive --depth=1
|
|
}
|
|
|
|
termux_step_post_get_source() {
|
|
local version="$(git log -1 --format=%cs | sed 's/-//g')"
|
|
if [ "$version" != "$TERMUX_PKG_VERSION" ]; then
|
|
echo -n "ERROR: The specified version \"$TERMUX_PKG_VERSION\""
|
|
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_host_build() {
|
|
termux_setup_cmake
|
|
cmake "-DCMAKE_BUILD_TYPE=Release" "$TERMUX_PKG_SRCDIR"
|
|
cmake --build . --target prepare_cross_compiling
|
|
}
|