From 60a48e7e65eb9fa2f3cd576d024a3809833f5703 Mon Sep 17 00:00:00 2001 From: Tee KOBAYASHI Date: Tue, 25 Jan 2022 17:09:44 +0900 Subject: [PATCH] new package: crypto-monitor --- packages/crypto-monitor/SetPath.cmake.patch | 6 +++++ packages/crypto-monitor/build.sh | 27 +++++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 packages/crypto-monitor/SetPath.cmake.patch create mode 100644 packages/crypto-monitor/build.sh diff --git a/packages/crypto-monitor/SetPath.cmake.patch b/packages/crypto-monitor/SetPath.cmake.patch new file mode 100644 index 000000000..b9f581978 --- /dev/null +++ b/packages/crypto-monitor/SetPath.cmake.patch @@ -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 diff --git a/packages/crypto-monitor/build.sh b/packages/crypto-monitor/build.sh new file mode 100644 index 000000000..e346e27ba --- /dev/null +++ b/packages/crypto-monitor/build.sh @@ -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 +}