35 lines
1.2 KiB
Bash
35 lines
1.2 KiB
Bash
# Template file for 'ncspot'
|
|
pkgname=ncspot
|
|
version=1.1.0
|
|
revision=1
|
|
build_style=cargo
|
|
build_helper="qemu"
|
|
configure_args="--features alsa_backend,cover"
|
|
hostmakedepends="pkg-config python3"
|
|
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=d3cd828cebb3e84470f03be16925db566d4dd8289cfd3e230e64278ec9d96338
|
|
|
|
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
|
|
}
|