1
0
mirror of https://github.com/termux/termux-packages synced 2024-06-18 04:17:08 +00:00
termux-packages/packages/jftui/build.sh
Termux Github Actions 261e57a1f0 bump(main/jftui): 0.6.1
This commit has been automatically submitted by Github Actions.
2022-12-10 00:22:33 +00:00

25 lines
906 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="Maxr1998 <max.rumpf1998@gmail.com>"
TERMUX_PKG_VERSION="0.6.1"
TERMUX_PKG_SRCURL=https://github.com/Aanok/jftui/archive/v${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=cd19e367503e8e4cd4c0fe9ff8dcb48cdc34b5b721ba0a526f963c1628673099
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"
}