blob: 889799473314015bd540950fb8bf9dcec545a04a (
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
|
# Maintainer: Alberto Redondo <albertomost at gmail dot com>
_pkgname=bsptab
pkgname=$_pkgname-git
pkgver=0.1.r0.g37c3235
pkgrel=1
pkgdesc='Suckless'"'"' tabbed integration into bspwm'
arch=('any')
url='https://github.com/albertored11/bsptab'
license=('MIT')
depends=('bspwm' 'tabbed' 'bash' 'awk' 'xorg-xwininfo' 'xorg-xprop' 'xorg-xwininfo' 'xdotool')
makedepends=('git')
provides=('bsptab')
conflicts=('bsptab')
source=("$_pkgname::git+${url}.git")
md5sums=('SKIP')
pkgver() {
cd $_pkgname
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
package() {
cd $_pkgname
make DESTDIR="$pkgdir" install
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
|