1
0
mirror of https://github.com/termux/termux-packages synced 2024-06-18 16:38:27 +00:00
termux-packages/x11-packages/ncspot-mpris/build.sh
Termux Github Actions d347e3c981 upgpkg(x11/ncspot-mpris): 0.11.2
This commit has been automatically submitted by Github Actions.
2022-10-15 12:37:45 +00:00

20 lines
809 B
Bash

TERMUX_PKG_HOMEPAGE=https://github.com/hrkfdn/ncspot
TERMUX_PKG_DESCRIPTION="An ncurses Spotify client written in Rust (with MPRIS support)"
TERMUX_PKG_LICENSE="BSD 2-Clause"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="0.11.2"
TERMUX_PKG_SRCURL=https://github.com/hrkfdn/ncspot/archive/v${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=0fd9696e13912b906605e9972bf3b2a8a68688cce17478353713550801c94fab
TERMUX_PKG_DEPENDS="dbus, pulseaudio"
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_CONFLICTS="ncspot"
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
--no-default-features
--features cursive/termion-backend,share_clipboard,pulseaudio_backend,mpris,notify
"
# NOTE: ncurses-rs runs a test while building which fails while cross compiling:
# therefore, we use cursive/termion-backend instead.