blob: 6e290d658fd8c3f8a522cce09bd51b7dbf47507e (
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
|
# Maintainer: budRich
# Contributor: budRich
pkgname=i3ass-git
pkgver=r498.87bb309
pkgrel=1
pkgdesc='A bash-script collection to assist the use of i3-wm.'
arch=('any')
url='https://github.com/budlabs/i3ass'
license=('MIT')
depends=('bash>=4.0.0' 'i3-wm' 'gawk' 'sed')
makedepends=('gawk' 'sed')
optdepends=('xdotool' 'i3menu')
conflicts=('i3ass')
source=("${pkgname}::git+$url")
provides=(i3ass)
sha256sums=('SKIP')
pkgver() {
cd "${pkgname}"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
package() {
cd "$pkgname"
make DESTDIR="$pkgdir/" PREFIX=/usr
make DESTDIR="$pkgdir/" PREFIX=/usr install
install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
install -Dm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
}
|