summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: ada5708a08d31165bfbf58924a75bf629148fc8c (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
# Maintainer: Gabriel Rauter <rauter.gabriel@gmail.com>

pkgname=gtherm
pkgver=0.0.3
pkgrel=1
pkgdesc="A simple daemon to monitor thermal zones and cooling devices"
arch=('i686' 'x86_64' 'armv6h' 'armv7h')
url="https://source.puri.sm/Librem5/gtherm"
license=(GPL3)
depends=(glib2)
makedepends=(git meson gtk-doc)
provides=("$pkgname")
conflicts=("$pkgname")
source=("git+https://source.puri.sm/Librem5/$pkgname.git#tag=v$pkgver")
sha256sums=('SKIP')

build() {
  arch-meson $pkgname build \
    -Dgtk_doc=true
  meson compile -C build 
}

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