41 lines
1.4 KiB
Bash
41 lines
1.4 KiB
Bash
# Template file for 'ncspot'
|
|
pkgname=ncspot
|
|
version=1.2.1
|
|
revision=1
|
|
build_style=cargo
|
|
build_helper="qemu"
|
|
configure_args="--features alsa_backend,cover"
|
|
hostmakedepends="pkg-config python3 cmake clang rust-bindgen"
|
|
makedepends="openssl-devel dbus-devel pulseaudio-devel alsa-lib-devel"
|
|
depends="ueberzug"
|
|
short_desc="Cross-platform ncurses Spotify client"
|
|
maintainer="Omar Zeghouani <omarzeghouanii@gmail.com>"
|
|
license="BSD-2-Clause"
|
|
homepage="https://github.com/hrkfdn/ncspot"
|
|
changelog="https://raw.githubusercontent.com/hrkfdn/ncspot/main/CHANGELOG.md"
|
|
distfiles="https://github.com/hrkfdn/ncspot/archive/refs/tags/v${version}.tar.gz"
|
|
checksum=6bd08609a56aa5854a1964c9a872fe58b69a768d7d94c874d40d7a8848241213
|
|
|
|
# FIXME: Workaround will be removed when https://github.com/aws/aws-lc-rs/issues/632 is resolved
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
armv[67]l)
|
|
export AWS_LC_SYS_CFLAGS="-Wno-stringop-overflow"
|
|
;;
|
|
esac
|
|
|
|
post_build() {
|
|
cargo auditable build --release --target ${RUST_TARGET} --package xtask
|
|
vtargetrun target/${RUST_TARGET}/release/xtask generate-shell-completion
|
|
vtargetrun target/${RUST_TARGET}/release/xtask generate-manpage
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
vinstall misc/ncspot.desktop 644 usr/share/applications
|
|
vinstall images/logo.svg 644 usr/share/icons/hicolor/scalable/apps ncspot.svg
|
|
|
|
vman misc/ncspot.1
|
|
vcompletion misc/ncspot.bash bash
|
|
vcompletion misc/_ncspot zsh
|
|
vcompletion misc/ncspot.fish fish
|
|
}
|