blob: 30c07d4ea3e99063123265ea25b8f4e9cb30ed4a (
plain)
1 # Description: An almost exact clone of ncmpc with some new features
2 # URL: https://rybczak.net/ncmpcpp/
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: boost fftw libmpdclient taglib mpd
5
6 name=ncmpcpp
7 version=0.8.2
8 release=1
9 source=(https://github.com/arybczak/$name/archive/$version/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13 ./autogen.sh
14 ./configure \
15 --prefix=/usr \
16 --enable-shared='yes' \
17 --enable-static='no' \
18 --enable-fast-install='yes' \
19 --enable-outputs \
20 --enable-visualizer \
21 --enable-clock \
22 --enable-outputs \
23 --with-fftw \
24 --with-taglib
25 make
26 make DESTDIR=$PKG install
27 rm -rf $PKG/usr/share
28 }
|