aboutsummarylogtreecommitdiffstats
path: root/PKGBUILD
blob: dab78d7af02e58bb95f0a14915a4dcaf5ff90191 (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
# Maintainer: Gashon Husesin <gashon@ghussein.org>

pkgname=i3-lru
pkgver=1.0
pkgrel=1
pkgdesc="Provides an i3 LRU window switcher (daemon + rofi script)."
arch=('any')
url="https://github.com/gashon/i3-lru"
license=('MIT')
depends=('i3-wm' 'jq' 'rofi' 'bash')
source=('i3-lru.sh'
	'i3-lru-daemon.py'
	'i3-lru-daemon.service')
sha256sums=('SKIP' 'SKIP') # For local dev you can skip or fill real checksums

package() {
	cd "$srcdir"

	# Install the two scripts into /usr/bin
	install -Dm755 i3-lru "${pkgdir}/usr/bin/i3-lru"
	install -Dm755 i3-lru-daemon "${pkgdir}/usr/bin/i3-lru-daemon"
	install -Dm644 i3-lru-daemon.service "$pkgdir/usr/lib/systemd/user/i3-lru-daemon.service"

}