summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d4706546ccd6d335a786a0c69471ca9eb6db9190 (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
# Maintainer: Angelo Elias Dal Zotto <angelodalzotto97 at gmail dot com>
pkgname=pulsarctl
pkgver=1.1.0
pkgrel=1
pkgdesc="Control Xanova Pulsar XK400 backlight and keylight effects"
arch=('x86_64')
url="https://github.com/aedalzotto/pulsarctl"
license=('GPL3')
source=("$url/archive/refs/tags/$pkgver.tar.gz")
sha256sums=('d5ae0cea0f226da54bf1fcf3fa3109c23c8f487477b275c594f15ce3af39100f')
makedepends=(
	'meson'
	'ninja'
	'argparse'
)
depends=(
	'hidapi'
)

build() {
	arch-meson $pkgname-$pkgver build
	meson compile -C build
}

package() {
 	meson install -C build --destdir "$pkgdir"
}