diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2012-11-16 22:03:54 +0100 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2012-11-16 22:03:54 +0100 |
commit | d503056ff0810f0e9a4d7430dd9a99ef666240d9 (patch) | |
tree | ce61331f893f95b1d3ae90eb3ea8e00adf2aa546 /community/ncmpcpp | |
parent | 0f2c3b17c081339b0c78fc54aa64a13a6b7e7c6e (diff) | |
parent | 99c34471cedb5de3afae4e33c48239abbe1410c7 (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts:
community/gtk-engine-unico/PKGBUILD
community/libfm/PKGBUILD
community/lxlauncher/PKGBUILD
community/lxpanel/PKGBUILD
community/ncmpcpp/PKGBUILD
community/sshguard/PKGBUILD
Diffstat (limited to 'community/ncmpcpp')
-rw-r--r-- | community/ncmpcpp/PKGBUILD | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/community/ncmpcpp/PKGBUILD b/community/ncmpcpp/PKGBUILD index 5891c13d4..0590f00a9 100644 --- a/community/ncmpcpp/PKGBUILD +++ b/community/ncmpcpp/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 74221 2012-07-23 03:07:58Z allan $ +# $Id: PKGBUILD 79964 2012-11-15 05:43:00Z bpiotrowski $ # Maintainer: Bartłomiej Piotrowski # Contributor: Mateusz Herych <heniekk@gmail.com> # Contributor: Army <uli[dot]armbruster[at]gmail[dot]com> @@ -6,17 +6,17 @@ pkgname=ncmpcpp pkgver=0.5.10 pkgrel=2 -pkgdesc="An almost exact clone of ncmpc with some new features." +pkgdesc='Almost exact clone of ncmpc with some new features' arch=('i686' 'x86_64' 'mips64el') -url="http://unkart.ovh.org/ncmpcpp/" +url='http://ncmpcpp.rybczak.net/' license=('GPL') depends=('curl' 'libmpdclient' 'taglib' 'ncurses') install=ncmpcpp.install -source=(http://unkart.ovh.org/ncmpcpp/${pkgname}-${pkgver}.tar.bz2) +source=(http://ncmpcpp.rybczak.net/stable/$pkgname-$pkgver.tar.bz2) md5sums=('298ed66325bcfe358e37e186c7ea4861') build() { - cd "$srcdir/${pkgname}-${pkgver}" + cd $srcdir/$pkgname-$pkgver ./configure --prefix=/usr \ --enable-unicode \ --enable-clock \ @@ -27,7 +27,6 @@ build() { } package() { - cd "$srcdir/${pkgname}-${pkgver}" - - make DESTDIR="$pkgdir" install + cd $srcdir/$pkgname-$pkgver + make DESTDIR=$pkgdir install } |