blob: 92a51c36ab15902dd9437fef9d401b22ef50a6d1 (
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
|
# Maintainer: Mihir Lad <mihirlad55@gmail.com>
pkgname=polybar-spotify-module
pkgver=1.2.5
pkgrel=1
pkgdesc="Programs to display spotify information and control spotify with polybar"
arch=('any')
url='https://github.com/mihirlad55/polybar-spotify-module'
license=('GPL3')
depends=('dbus' 'spotify' 'polybar')
optdepends=('nerd-fonts-complete: play, pause, etc. icons for spotify module'
'ttf-font-awesome: more icons for spotify module')
makedepends=('git' 'make')
source=("${pkgname}::git+${url}.git#tag=v${pkgver}")
md5sums=('SKIP')
build() {
cd $pkgname/src
make all
}
package() {
cd $pkgname/src
make BASE_INSTALL_PREFIX="$pkgdir/" install
}
|