Advertisement
timcowchip

cmus

Feb 14th, 2017
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. # Description: Small and fast music player using the ncurses library
  2. # URL: http://cmus.sf.net/
  3. # Maintainer: Thomas Penteker, tek at serverop dot de
  4. # Packager: Jukka Heino, jukka dot heino at gmail dot com
  5. # Depends on:
  6. # Nice to have: alsa-lib, flac, libao, libid3tag, libmad, libmodplug, libmpcdec, libvorbis
  7.  
  8. name=cmus
  9. version=2.7.1
  10. release=1
  11. source=(https://github.com/cmus/cmus/archive/v${version}.tar.gz)
  12.  
  13. build() {
  14. cd $name-$version
  15.  
  16. ./configure prefix=/usr
  17. make
  18. make DESTDIR=$PKG install install-man
  19. rm -rf $PKG/usr/share/doc
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement