Pkgfile 468 B

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