0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-09-21 10:29:38 +00:00
Files
termux-packages/packages/oh-my-posh/build.sh
Termux Github Actions caa7604b3b bump(main/oh-my-posh): 25.19.0
This commit has been automatically submitted by Github Actions.
2025-04-26 12:17:51 +00:00

35 lines
1.1 KiB
Bash

TERMUX_PKG_HOMEPAGE=https://ohmyposh.dev
TERMUX_PKG_DESCRIPTION="A prompt theme engine for any shell."
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="25.19.0"
TERMUX_PKG_SRCURL=https://github.com/JanDeDobbeleer/oh-my-posh/archive/v${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=3179bf993c5ff6e9e48e8c37f355ea0634e42980f613c0a138d3ab437a59e0de
TERMUX_PKG_AUTO_UPDATE=true
termux_step_pre_configure() {
termux_setup_golang
go mod init oh-my-posh
go mod tidy
}
termux_step_make() {
cd "${TERMUX_PKG_SRCDIR}/src/"
local ldflags=''
ldflags+="-linkmode=external "
ldflags+="-X github.com/jandedobbeleer/oh-my-posh/src/build.Version=${TERMUX_PKG_VERSION} "
ldflags+="-X github.com/jandedobbeleer/oh-my-posh/src/build.Date=$(date +%F)"
go build -buildvcs=false -ldflags="${ldflags}" -o oh-my-posh
}
termux_step_make_install() {
cd "${TERMUX_PKG_SRCDIR}/src/"
install -Dm700 ./oh-my-posh "${TERMUX_PREFIX}/bin/"
install -d "${TERMUX_PREFIX}/share/oh-my-posh/themes"
install -m 600 ../themes/* -t "${TERMUX_PREFIX}/share/oh-my-posh/themes"
}