diff options
author | root <root@rshg054.dnsready.net> | 2013-03-25 00:05:30 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-03-25 00:05:30 -0700 |
commit | 32793d9a5b60ef0591c71c12ad75121d9b155adf (patch) | |
tree | ab1afae584dd06fd4ab20f57fb5a624e907f0985 /extra/ncmpc/PKGBUILD | |
parent | 31416859638d756d88136e4e0eb78027c16ac17f (diff) |
Mon Mar 25 00:05:30 PDT 2013
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 63fdf1565..d6397c819 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 -pkgdesc="A ncurses (command line) interface for MPD" -arch=("i686" "x86_64") -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') 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 } |