0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-10-06 18:49:44 +00:00
Files
termux-packages/packages/jftui/build.sh
Termux Github Actions 46aa2dbded bump(main/jftui): 0.7.4
This commit has been automatically submitted by Github Actions.
2025-04-26 18:16:36 +00:00

25 lines
879 B
Bash

TERMUX_PKG_HOMEPAGE=https://github.com/Aanok/jftui
TERMUX_PKG_DESCRIPTION="jftui is a minimalistic, lightweight C99 command line client for the open source Jellyfin media server."
TERMUX_PKG_LICENSE="Unlicense"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="0.7.4"
TERMUX_PKG_SRCURL=https://github.com/Aanok/jftui/archive/v${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=c24dd3b25a69015d9652c0cceda4d94088af8e818f6f6e9b8d4b86ef82b8097a
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_DEPENDS="libcurl, yajl, mpv"
TERMUX_PKG_BUILD_IN_SRC=true
termux_step_pre_configure() {
sed -i 's| -march=native||' Makefile
sed -i 's|^CFLAGS=|override CFLAGS+=|' Makefile
sed -i 's|^LFLAGS=|override LFLAGS+=|' Makefile
}
termux_step_make() {
make CFLAGS="$CPPFLAGS" LFLAGS="$LDFLAGS"
}
termux_step_make_install() {
install -Dm700 $TERMUX_PKG_SRCDIR/build/jftui "$TERMUX_PREFIX/bin/jftui"
}