Skip to content
Snippets Groups Projects
Commit 4224ff19 authored by Bartłomiej Piotrowski's avatar Bartłomiej Piotrowski
Browse files

new upstream release

parent 3ab285ff
No related branches found
No related tags found
No related merge requests found
......@@ -4,20 +4,29 @@
# Contributor: Army <uli[dot]armbruster[at]gmail[dot]com>
pkgname=ncmpcpp
pkgver=0.5.10
pkgrel=5
pkgver=0.6beta2
pkgrel=1
pkgdesc='Almost exact clone of ncmpc with some new features'
arch=('i686' 'x86_64')
url='http://ncmpcpp.rybczak.net/'
license=('GPL')
depends=('curl' 'libmpdclient' 'taglib' 'ncurses' 'fftw')
depends=('curl' 'libmpdclient' 'taglib' 'ncurses' 'fftw' 'boost-libs')
makedepends=('boost')
install=ncmpcpp.install
source=(http://ncmpcpp.rybczak.net/stable/$pkgname-$pkgver.tar.bz2)
md5sums=('298ed66325bcfe358e37e186c7ea4861')
source=(https://github.com/arybczak/ncmpcpp/archive/${pkgver/b/_b}.tar.gz
missing-include.patch)
md5sums=('0ef8db322382e0bcd51214b764773977'
'14fa33349661c8e6c2a323970ef1e98c')
prepare() {
cd $pkgname-${pkgver/b/_b}
patch -p1 -i ../missing-include.patch
NOCONFIGURE=1 ./autogen.sh
}
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr \
cd $pkgname-${pkgver/b/_b}
BOOST_LIB_SUFFIX='' ./configure --prefix=/usr \
--enable-clock \
--enable-outputs \
--enable-unicode \
......@@ -29,7 +38,7 @@ build() {
}
package() {
cd $pkgname-$pkgver
cd $pkgname-${pkgver/b/_b}
make DESTDIR="$pkgdir" install
make -C extras
......
diff --git a/src/scrollpad.cpp b/src/scrollpad.cpp
index e865cee..e405090 100644
--- a/src/scrollpad.cpp
+++ b/src/scrollpad.cpp
@@ -19,6 +19,7 @@
***************************************************************************/
#include <cassert>
+#include <iostream>
#include <boost/regex.hpp>
#include "scrollpad.h"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment