summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b1c63da12ee72e6cfffcfd1c3ff0cf400e27e4a1 (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
# Maintainer: mechakotik <mechakotik@gmail.com>

pkgname=rog-daemon
pkgver=1.0.3
pkgrel=1
pkgdesc="Lightweight daemon and CLI to control ASUS ROG/TUF laptops features"
url="https://github.com/mechakotik/rog-daemon"
arch=('x86_64')
license=('GPL')

source=("${pkgname}-${pkgver}::https://github.com/mechakotik/$pkgname/archive/refs/tags/v$pkgver.tar.gz")
sha256sums=('1e450d18e0b55e0e0170db8888bbd25d98c67fca25c1414bb8d9524821d17d24')

makedepends=(
    'gcc'
    'meson'
)

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

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