summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 73e8b301998879a6c4a7f94ed59557e1848f7c4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Maintainer: Yigit Sever <yigit at yigitsever dot com>
# Contributor: timescam <rex.ky.ng@gmail.com>

_pkgname=polybar-spotify
pkgname=${_pkgname}-git
pkgver=r42.9bc2997
pkgrel=1
pkgdesc='Spotify artist and song module for Polybar'
arch=(any)
url=https://github.com/Jvanrhijn/${_pkgname}
license=('MIT')
depends=('python' 'python-dbus')
makedepends=(git)
source=("${_pkgname}::git+${url}.git")
sha256sums=('SKIP')

pkgver() {
  cd ${_pkgname}
  set -o pipefail
  git describe --long 2> /dev/null | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g' ||
  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

package() {
  cd ${_pkgname}
  install -Dm644 README.md "${pkgdir}"/usr/share/doc/${_pkgname}/README.md
  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${_pkgname}/LICENSE
  install -Dm755 spotify_status.py "${pkgdir}"/usr/share/polybar/scripts/spotify_status.py
}