new package: crypto-monitor

This commit is contained in:
Tee KOBAYASHI 2022-01-25 17:09:44 +09:00 committed by xtkoba
parent b7d51154ec
commit 60a48e7e65
2 changed files with 33 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,27 @@
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_SRCURL=https://github.com/edghyhdz/crypto_monitor.git
TERMUX_PKG_GIT_BRANCH=main
TERMUX_PKG_DEPENDS="libc++, libcurl, ncurses-ui-libs, openssl"
TERMUX_PKG_BUILD_DEPENDS="boost"
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
}
termux_step_make_install() {
install -Dm700 -t $TERMUX_PREFIX/bin executable/crypto_monitor
}