36 lines
885 B
Bash
36 lines
885 B
Bash
# Author: Axujen <axujen@gmail.com>
|
|
# Maintainer: ZaZam <zazaamm at gmail dot com>
|
|
|
|
_gitauthor=axujen
|
|
_gitname=mpdrandom
|
|
pkgname=mpdrandom-git
|
|
pkgver=1.1.2.r14.g0658b2d
|
|
pkgrel=1
|
|
pkgdesc="mpd albums randomizing script"
|
|
arch=('any')
|
|
url="https://github.com/$_gitauthor/$_gitname"
|
|
license=('unknown')
|
|
depends=('python' 'python-mpd2')
|
|
makedepends=('git')
|
|
provides=('mpdrandom')
|
|
source=("git+https://github.com/$_gitauthor/$_gitname" 'mpdrandom.service')
|
|
sha1sums=('SKIP' '155133e127d3d935d339cff2265a5f728a4ef0b1')
|
|
|
|
pkgver() {
|
|
cd "$srcdir/$_gitname"
|
|
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
|
|
}
|
|
|
|
build() {
|
|
cd "$srcdir/$_gitname"
|
|
python setup.py build
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$_gitname"
|
|
python setup.py install --prefix="$pkgdir/usr"
|
|
|
|
install -Dm644 "$srcdir/mpdrandom.service" "$pkgdir/usr/lib/systemd/user/mpdrandom.service"
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|