diff options
Diffstat (limited to 'extra/ncmpc/PKGBUILD')
-rw-r--r-- | extra/ncmpc/PKGBUILD | 41 |
1 files changed, 20 insertions, 21 deletions
diff --git a/extra/ncmpc/PKGBUILD b/extra/ncmpc/PKGBUILD index 1db460479..f9c9dcec1 100644 --- a/extra/ncmpc/PKGBUILD +++ b/extra/ncmpc/PKGBUILD @@ -1,37 +1,36 @@ -# $Id: PKGBUILD 150715 2012-02-21 01:22:44Z angvp $ -# Maintainer: Angel Velasquez <angvp@archlinux.org> +# $Id: PKGBUILD 180582 2013-03-23 23:09:37Z td123 $ +# Maintainer: Gaetan Bisson <bisson@archlinux.org> +# Contributor: Angel Velasquez <angvp@archlinux.org> # Contributor: Andrea Scarpino <andrea@archlinux.org> # Contributor: damir <damir@archlinux.org> # Contributor: Daniel Bainton <dpb [at] backarrow.org> pkgname=ncmpc pkgver=0.20 -pkgrel=1.1 -pkgdesc="A ncurses (command line) interface for MPD" -arch=("i686" "x86_64" 'mips64el') -url="http://mpd.wikia.com/wiki/Client:Ncmpc" +pkgrel=2 +pkgdesc='Fully featured MPD client using ncurses' +url='http://mpd.wikia.com/wiki/Client:Ncmpc' +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('ncurses' 'glib2' 'libmpdclient') optdepends=('python2: to enable lyrics plugin' - 'ruby: to enable lyrics plugin') + 'ruby: to enable lyrics plugin') source=("http://downloads.sourceforge.net/musicpd/${pkgname}-${pkgver}.tar.bz2") -md5sums=('62b9df0263d9567babf7446c258acc5d') +sha1sums=('da106de4b11a48eb2d63619da1316713f95cc9cb') build() { - cd ${srcdir}/${pkgname}-${pkgver} - sed -i 's#python#python2#' lyrics/30-leoslyrics.py - ./configure --prefix=/usr \ - --sysconfdir=/etc \ - --enable-lyrics-screen \ - --with-lyrics-plugin-dir=/usr/share/ncmpc/lyrics - make + cd "${srcdir}/${pkgname}-${pkgver}" + sed -i 's#python#python2#' lyrics/30-leoslyrics.py + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --enable-lyrics-screen \ + --with-lyrics-plugin-dir=/usr/share/ncmpc/lyrics + make } package() { - cd ${srcdir}/${pkgname}-${pkgver} - make DESTDIR=${pkgdir} install - - install -d ${pkgdir}/usr/share/ncmpc/lyrics - install -m755 lyrics/{10-hd.sh,15-leoslyrics.sh,20-lyricwiki.rb,30-leoslyrics.py} \ - ${pkgdir}/usr/share/ncmpc/lyrics + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install + for i in lyrics/*; do install -Dm755 "$i" "${pkgdir}/usr/share/ncmpc/$i"; done } |