Update repo

This commit is contained in:
termux-pacman-bot
2025-01-30 15:36:26 +00:00
parent b3c3ad1f36
commit fbe79d08bd
2 changed files with 41 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
--- a/SetPath.cmake
+++ b/SetPath.cmake
@@ -1,2 +1,2 @@
-configure_file(${CMAKE_CURRENT_SOURCE_DIR}/../src/Variables.h.in ${CMAKE_CURRENT_SOURCE_DIR}/../src/Variables.h)
+configure_file(${CMAKE_CURRENT_SOURCE_DIR}/src/Variables.h.in ${CMAKE_CURRENT_SOURCE_DIR}/src/Variables.h)
message("Data path was set") # For testing only

View File

@@ -0,0 +1,35 @@
TERMUX_PKG_HOMEPAGE=https://github.com/edghyhdz/crypto_monitor
TERMUX_PKG_DESCRIPTION="Real-time crypto currency monitor"
TERMUX_PKG_LICENSE="GPL-3.0"
TERMUX_PKG_MAINTAINER="@termux"
_COMMIT=86fd7de705babc2cef1e920e39ec439f5aa9c336
TERMUX_PKG_VERSION=2021.02.22
TERMUX_PKG_REVISION=3
TERMUX_PKG_SRCURL=git+https://github.com/edghyhdz/crypto_monitor
TERMUX_PKG_SHA256=df67d1a0de5f547cab78dbc977609d1b24f5c2ed8e3fc0619734d3e36ac4a1bc
TERMUX_PKG_AUTO_UPDATE=false
TERMUX_PKG_GIT_BRANCH=main
TERMUX_PKG_DEPENDS="libc++, libcurl, ncurses-ui-libs, openssl"
TERMUX_PKG_BUILD_DEPENDS="boost, boost-headers"
TERMUX_PKG_BUILD_IN_SRC=true
termux_step_post_get_source() {
git fetch --unshallow
git checkout $_COMMIT
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_make_install() {
install -Dm700 -t $TERMUX_PREFIX/bin executable/crypto_monitor
}