blob: 2d3c1eaca83cad13cbf7f9630dc3048cd584b390 (
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: Owen D'Aprile <owendaprile at gmail dot com>
pkgname='genius-spicetify-git'
_reponame='genius-spicetify'
pkgver=r6.4c033d1
pkgrel=1
pkgdesc='Spicetify app that fetches lyrics from Genius'
arch=('any')
url='https://github.com/khanhas/genius-spicetify'
license=('unknown')
depends=('spicetify-cli'
'spotify')
makedepends=('git')
source=('git+https://github.com/khanhas/genius-spicetify.git')
sha256sums=('SKIP')
pkgver() {
cd $_reponame
printf "r%s.%s" $(git rev-list --count HEAD) $(git rev-parse --short HEAD)
}
package() {
cd $srcdir/$_reponame
find . -type d -name ".git" -prune -o -type f -not -name "README.md" -exec install -vDm644 {} $pkgdir/usr/share/spicetify-cli/CustomApps/genius/{} \;
}
|