# Maintainer: Trizen # Contributor: sekret _pkgname=clyrics pkgname=$_pkgname-git pkgver=0.12 pkgrel=1 pkgdesc="An extensible lyrics fetcher, with daemon support for cmus and mocp." url="https://github.com/trizen/clyrics" arch=('any') license=('GPL3') depends=('perl-www-mechanize' 'perl-io-html' 'perl-lwp-protocol-https') makedepends=('git') optdepends=('moc: daemon support for moc player' 'cmus: daemon support for cmus player') provides=("$_pkgname") conflicts=("$_pkgname") install='readme.install' source=("$_pkgname::git+https://github.com/trizen/clyrics.git") md5sums=('SKIP') pkgver() { cd "$_pkgname" git describe --always | sed -e 's|-|.|g' } package() { cd "$_pkgname" install -Dm755 "$_pkgname" "$pkgdir/usr/bin/$_pkgname" cd plugins for i in * do install -Dm644 "$i" "$pkgdir/usr/share/$_pkgname/$i" done }