1234567891011121314151617 |
- # Description: cmus is a small, fast and powerful console music player for Unix-like operating systems.
- # URL: https://cmus.github.io/
- # Maintainer: Daniel Azevedo, daniazevedo77 at posteo dot net
- # Depends on: alsa-oss flac opus libvorbis wavpack libmad faad2 libcdio
- name=cmus
- version=2.12.0
- release=1
- source=(https://github.com/cmus/cmus/archive/refs/tags/v$version.tar.gz)
- build() {
- cd $name-$version
- ./configure prefix=/usr
- make
- make DESTDIR=$PKG install
- }
|