mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2025-12-29 23:20:37 +00:00
Some packages have issues with parallel builds and need to set TERMUX_MAKE_PROCESSES=1. All other build variables that package recipes set are prefixed with TERMUX_PKG, use that for MAKE_PROCESSES as well for consistency. %ci:no-build
17 lines
656 B
Bash
17 lines
656 B
Bash
TERMUX_PKG_HOMEPAGE=https://www.musicpd.org/clients/mpc/
|
|
TERMUX_PKG_DESCRIPTION="Minimalist command line interface for MPD"
|
|
TERMUX_PKG_LICENSE="GPL-2.0"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION=0.35
|
|
TERMUX_PKG_SRCURL=https://www.musicpd.org/download/mpc/${TERMUX_PKG_VERSION:0:1}/mpc-$TERMUX_PKG_VERSION.tar.xz
|
|
TERMUX_PKG_SHA256=382959c3bfa2765b5346232438650491b822a16607ff5699178aa1386e3878d4
|
|
TERMUX_PKG_DEPENDS="libiconv, libmpdclient"
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="-Diconv=enabled"
|
|
|
|
# There seems to be issues with sphinx-build when using concurrent builds:
|
|
TERMUX_PKG_MAKE_PROCESSES=1
|
|
|
|
termux_step_pre_configure() {
|
|
LDFLAGS+=" -liconv"
|
|
}
|