mirror of
https://github.com/termux/termux-packages.git
synced 2024-12-04 18:45:52 +00:00
3ec82277d7
The termux_git_clone_src script has been updated and now expects git urls to start with git+ instead. %ci:no-build
17 lines
546 B
Bash
17 lines
546 B
Bash
TERMUX_PKG_HOMEPAGE=https://github.com/ggerganov/imtui
|
|
TERMUX_PKG_DESCRIPTION="An immediate mode text-based user interface library"
|
|
TERMUX_PKG_LICENSE="MIT"
|
|
TERMUX_PKG_LICENSE_FILE="LICENSE, third-party/imgui/imgui/LICENSE.txt"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION=1.0.5
|
|
TERMUX_PKG_REVISION=1
|
|
TERMUX_PKG_SRCURL=git+https://github.com/ggerganov/imtui
|
|
TERMUX_PKG_DEPENDS="libc++, ncurses"
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
|
-DBUILD_SHARED_LIBS=ON
|
|
"
|
|
|
|
termux_step_post_make_install() {
|
|
install -Dm700 -t $TERMUX_PREFIX/bin bin/hnterm
|
|
}
|