# Maintainer: Levente Polyak # Contributor: Bartłomiej Piotrowski # Contributor: graysky # Contributor: Mateusz Herych # Contributor: Army # ALARM: Kevin Mihelich # - strip -march=native from extras Makefile pkgname=ncmpcpp pkgver=0.8.1 pkgrel=4 pkgdesc='Almost exact clone of ncmpc with some new features' url='http://ncmpcpp.rybczak.net/' arch=('x86_64') license=('GPL') depends=('curl' 'libmpdclient' 'taglib' 'ncurses' 'fftw' 'boost-libs') makedepends=('boost') source=(${pkgname}-${pkgver}.tar.bz2::https://rybczak.net/ncmpcpp/stable/${pkgname}-${pkgver}.tar.bz2) sha512sums=('2b1b615672910f6b55d4a3e1842f677b8c72659a86dca74d9c306612038d7b765f622e4b8948f14d8a3f4fa913d413d128ed8726f70d7a09cfe95d3c1fe87d15') prepare() { cd ${pkgname}-${pkgver} sed -i 's/-march=native//' extras/Makefile } build() { cd ${pkgname}-${pkgver} # http://site.icu-project.org/download/61#TOC-Migration-Issues CPPFLAGS+=' -DU_USING_ICU_NAMESPACE=1' BOOST_LIB_SUFFIX='' ./configure \ --prefix=/usr \ --enable-clock \ --enable-outputs \ --enable-unicode \ --enable-visualizer \ --with-curl \ --with-fftw \ --with-taglib make make -C extras } package() { cd ${pkgname}-${pkgver} make DESTDIR="${pkgdir}" install install -Dm 755 extras/artist_to_albumartist -t "${pkgdir}/usr/bin" } # vim: ts=2 sw=2 et: