blob: a920263aaeaf0fe59c465b4cbd2fb0f8cc31c961 (
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
30
31
32
33
34
35
36
|
# Maintainer: Ankit R Gadiya <arch@argp.in>
pkgname=slstatus-git
pkgver=r540.dd7f189
pkgrel=1
pkgdesc='A status monitor for window managers'
arch=('i686' 'x86_64')
url='http://tools.suckless.org/slstatus'
depends=('libx11')
makedepends=('git')
license=('custom:ISC')
source=("git+https://git.suckless.org/${pkgname%-git}"
"config.h")
md5sums=('SKIP'
'ee7827d55ed1db925e722962a016be33')
pkgver() {
cd "${pkgname%-git}"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
prepare() {
cp config.h "${pkgname%-git}/config.h"
}
build() {
cd "${pkgname%-git}"
make X11INC='/usr/include/X11' X11LIB='/usr/lib/X11'
}
package() {
cd "${pkgname%-git}"
make DESTDIR="${pkgdir}" PREFIX='/usr/' install
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname%-git}/LICENSE"
}
|