mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-03-19 00:21:40 +00:00
27 lines
733 B
Bash
27 lines
733 B
Bash
![]() |
# $Id: PKGBUILD 3714 2009-10-08 06:59:30Z mherych $
|
||
|
# Maintainer: Mateusz Herych <heniekk@gmail.com>
|
||
|
# Contributor: Army <uli[dot]armbruster[at]gmail[dot]com>
|
||
|
|
||
|
pkgname=ncmpcpp
|
||
|
pkgver=0.4.1
|
||
|
pkgrel=3
|
||
|
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' 'taglib' 'ncurses')
|
||
|
install=${pkgname}.install
|
||
|
source=(http://unkart.ovh.org/ncmpcpp/${pkgname}-${pkgver}.tar.bz2)
|
||
|
md5sums=('120e15c8791f82c30671990bbf2022e1')
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir/${pkgname}-${pkgver}
|
||
|
./configure --prefix=/usr \
|
||
|
--enable-unicode \
|
||
|
--enable-clock \
|
||
|
--with-taglib \
|
||
|
--with-curl || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR="$pkgdir" install
|
||
|
}
|