blob: 02fb9e04f15a6c9b7933c72f01008def54f909f0 (
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
|
# Maintainer: Tomasz Oponowicz <tomasz at zaxo dot biz>
pkgname=roombee-icon-theme-git
pkgver=20191216.r0.g0859d1d
pkgrel=1
epoch=1
pkgdesc="Roombee icon theme (git version)"
url="https://github.com/tomasz-oponowicz/${pkgname%-git}"
arch=('any')
license=('LGPL3')
makedepends=('git')
provides=("${pkgname%-git}")
options=('!strip')
source=("${pkgname}::git+${url}.git")
sha256sums=('SKIP')
pkgver() {
cd "${srcdir}/${pkgname}"
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
package() {
cd "${srcdir}/${pkgname}"
make DESTDIR="${pkgdir}/" install
}
# vim:set ts=2 sw=2 et:
|