commit 38cd6060f1a7750e14c8ef91202313263c6c4681 Author: Tim Biermann <tbier@posteo.de> Date: Sun Dec 29 13:32:28 2019 +0100 ncmpcpp: initial commit, version 0.8.2 diff --git a/ncmpcpp/.footprint b/ncmpcpp/.footprint new file mode 100644 index 000000000..4265b0834 --- /dev/null +++ b/ncmpcpp/.footprint @@ -0,0 +1,3 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/ncmpcpp diff --git a/ncmpcpp/.signature b/ncmpcpp/.signature new file mode 100644 index 000000000..3edfdf0c9 --- /dev/null +++ b/ncmpcpp/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF37ZmvyR1JEfGhe9jfPFz8hdvdPqquS615pvNx9nXDCz6FGvTciquSoSemfLGaPIZt5WHdROmBcKKRA2t4DcxkQM= +SHA256 (Pkgfile) = fd0b6893926e1db63f884bceed2c8b8aa4bb761fa88d66fbc8ccccff622850a8 +SHA256 (.footprint) = 106b3c28574a9591fa92d0c5c8ee8e0bc78a394a48840175cb2ab8f71b7b0ceb +SHA256 (ncmpcpp-0.8.2.tar.gz) = 682fa230029a917f8c8b54131e6c8fb4915aefed2cc5726ca7c3ab4f4fb97bda diff --git a/ncmpcpp/Pkgfile b/ncmpcpp/Pkgfile new file mode 100644 index 000000000..30c07d4ea --- /dev/null +++ b/ncmpcpp/Pkgfile @@ -0,0 +1,28 @@ +# Description: An almost exact clone of ncmpc with some new features +# URL: https://rybczak.net/ncmpcpp/ +# Maintainer: Tim Biermann, tbier at posteo dot de +# Depends on: boost fftw libmpdclient taglib mpd + +name=ncmpcpp +version=0.8.2 +release=1 +source=(https://github.com/arybczak/$name/archive/$version/$name-$version.tar.gz) + +build() { + cd $name-$version + ./autogen.sh + ./configure \ + --prefix=/usr \ + --enable-shared='yes' \ + --enable-static='no' \ + --enable-fast-install='yes' \ + --enable-outputs \ + --enable-visualizer \ + --enable-clock \ + --enable-outputs \ + --with-fftw \ + --with-taglib + make + make DESTDIR=$PKG install + rm -rf $PKG/usr/share +}