Max Rumpf
5 years ago
committed by
GitHub
2 changed files with 25 additions and 0 deletions
@ -0,0 +1,23 @@ |
|||
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.3.0 |
|||
TERMUX_PKG_SRCURL=https://github.com/Aanok/jftui/archive/v${TERMUX_PKG_VERSION}.tar.gz |
|||
TERMUX_PKG_SHA256=336cc17a67bb91ee0b1ca0a5a3d2e415054806cb80f9b1c9b382eb4fdcde3bb5 |
|||
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" |
|||
} |
Loading…
Reference in new issue