mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-01-06 10:53:21 +00:00
42 lines
1.4 KiB
Bash
42 lines
1.4 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://ralph-irving.github.io/squeezelite.html
|
|
TERMUX_PKG_DESCRIPTION="A small headless Logitech Squeezebox emulator"
|
|
TERMUX_PKG_LICENSE="GPL-3.0, BSD 2-Clause"
|
|
TERMUX_PKG_LICENSE_FILE="LICENSE.txt"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
_COMMIT=262994a989dc29ce3be4390c57c6a43373dfdca2
|
|
TERMUX_PKG_VERSION=2.0.0.1517
|
|
TERMUX_PKG_SRCURL=git+https://github.com/ralph-irving/squeezelite
|
|
TERMUX_PKG_SHA256=89420f9c6f9f81f71b80251048cd065c2646ba90eae1a9cf052baa5706f0ed3a
|
|
TERMUX_PKG_AUTO_UPDATE=false
|
|
TERMUX_PKG_GIT_BRANCH=master
|
|
TERMUX_PKG_DEPENDS="libflac, libmad, libvorbis, mpg123, pulseaudio"
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
|
|
termux_step_post_get_source() {
|
|
git fetch --unshallow
|
|
git checkout $_COMMIT
|
|
|
|
local s=$(find . -type f ! -path '*/.git/*' -print0 | xargs -0 sha256sum | LC_ALL=C sort | sha256sum)
|
|
if [[ "${s}" != "${TERMUX_PKG_SHA256} "* ]]; then
|
|
termux_error_exit "Checksum mismatch for source files: expected=${TERMUX_PKG_SHA256}, actual=${s}"
|
|
fi
|
|
|
|
local ver=()
|
|
local k
|
|
for k in MAJOR MINOR MICRO; do
|
|
ver+=($(sed -En 's/^#define '"${k}"'_VERSION "([^"]+)"/\1/p' squeezelite.h))
|
|
done
|
|
if [ "$(IFS=.; echo "${ver[*]}")" != "${TERMUX_PKG_VERSION#*:}" ]; then
|
|
termux_error_exit "Version string '$TERMUX_PKG_VERSION' does not seem to be correct."
|
|
fi
|
|
}
|
|
|
|
termux_step_pre_configure() {
|
|
export OPTS="-DLINKALL -DNO_FAAD -DPULSEAUDIO"
|
|
export LDADD="-lm"
|
|
}
|
|
|
|
termux_step_make_install() {
|
|
install -Dm700 squeezelite $TERMUX_PREFIX/bin/
|
|
}
|