blob: 4038e8cafa83d7a1459f8f84d9839b43b60122f3 (
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
5 # Optional: mpd
6
7 name=ncmpcpp
8 version=0.8.2
9 release=1
10 source=(https://github.com/arybczak/$name/archive/$version/$name-$version.tar.gz)
11
12 build() {
13 cd $name-$version
14 ./autogen.sh
15 ./configure \
16 --prefix=/usr \
17 --enable-shared='yes' \
18 --enable-static='no' \
19 --enable-fast-install='yes' \
20 --enable-outputs \
21 --enable-visualizer \
22 --enable-clock \
23 --enable-outputs \
24 --with-fftw \
25 --with-taglib
26 make
27 make DESTDIR=$PKG install
28 rm -rf $PKG/usr/share
29 }
|