You are not logged in.
Pages: 1
ncmpcpp 0.5.9 package is compiled without fftw3 support, so where is no support for music visualizer which was added in this version. Can you, please, update the package?
Everything less than immortality is a complete waste of time!
Offline
It's probably a better idea to report this via the bugtracker, so the person maintaining the package can look into it.
Burninate!
Offline
I know, but then i must register an extra account of archlinux. It's too much. I just recompiled ncmpcpp on my own - now it's works.
Here is my PKGBUILD if someone intrested:
└─■ cat abs/ncmcpp/PKGBUILD
pkgname=ncmpcpp
pkgver=0.5.9
pkgrel=2
pkgdesc="An almost exact clone of ncmpc with some new features."
arch=('i686' 'x86_64')
url="http://unkart.ovh.org/ncmpcpp/"
license=('GPL')
depends=('curl' 'libmpdclient' 'taglib' 'ncurses')
install=ncmpcpp.install
source=(http://unkart.ovh.org/ncmpcpp/${pkgname}-${pkgver}.tar.bz2)
md5sums=('07f62d6574d0dcc99cad84adb9754203')
build() {
cd "$srcdir/${pkgname}-${pkgver}"
./configure --prefix=/usr \
--prefix="/usr" \
--mandir="/usr/man" \
--enable-outputs \
--enable-visualizer \
--enable-clock \
--enable-unicode \
--with-curl \
--with-fftw \
--with-taglib
make
}
package() {
cd "$srcdir/${pkgname}-${pkgver}"
make DESTDIR="$pkgdir" install
}Everything less than immortality is a complete waste of time!
Offline
Offline
Pages: 1