summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 0dfdbc3f832f5892e31db4d4c2c8bc9fae80aae6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: Aaron Honeycutt <aaron at system76 dot com>
pkgname=keyboard-configurator
pkgver=1.0.0
pkgrel=2
pkgdesc="Configures keymap and backlight of System76 keyboards."
arch=('x86_64')
url="https://github.com/pop-os/keyboard-configurator"
license=('GPL3')
makedepends=('gtk3' 'rust' 'systemd' 'git')
source=("${pkgname}::git+${url}")
sha256sums=('SKIP')

build() {
	cd "$pkgbase"
	make prefix=/usr
}

package() {
	depends=('xz' 'hidapi' 'gtk3')
	cd "$pkgbase"
	make prefix=/usr DESTDIR="$pkgdir/" install
}