0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-09-02 19:20:38 +00:00
Files
termux-packages/packages/oh-my-posh/build.sh
Termux Github Actions e422db7f83 bump(main/oh-my-posh): 24.19.0
This commit has been automatically submitted by Github Actions.
2025-02-24 12:35:55 +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="24.19.0"
TERMUX_PKG_SRCURL=https://github.com/JanDeDobbeleer/oh-my-posh/archive/v${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=56ab165eb166d4cb6ca3bb21d9f262c27efd727778b1359c0794980d8ad87478
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"
}