12345678910111213141516171819 |
- # Description: Cross-platform ncurses Spotify client written in Rust, inspired by ncmpc and the likes.
- # URL: https://github.com/hrkfdn/ncspot
- # Maintainer: Daniel Azevedo, daniazevedo77 at posteo dot net
- # Depends on: rust pulseaudio
- name=ncspot
- version=1.2.1
- release=1
- source=(https://github.com/hrkfdn/ncspot/archive/v$version/$name-$version.zip)
- build() {
- cd $name-$version
- cargo fetch --locked
- cargo build --release --locked
- install -Dm 755 "target/release/$name" "$PKG/usr/bin/$name"
- }
|