summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 524a6ee6dc11f5df0cc202d3e84f497259ada3ad (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
28
29
30
31
32
33
34
35
36
37
38
39
# Maintainer: Jan Alexander Steffens (heftig) <heftig@archlinux.org>
# Contributor: Tom Gundersen <teg@jklm.no>
# Contributor: Thomas Baechler <thomas@archlinux.org>

pkgname=libfprint-elitebook
pkgver=1.94.5
pkgrel=1
pkgdesc="LibFPrint fork for 06cb:00e9 Elitebook x360 1040 G7"
url="https://github.com/Aperre/libfprint-elitebook"
arch=(x86_64)
license=(LGPL)
depends=(libgusb pixman nss systemd libgudev)
makedepends=(git meson gtk-doc gobject-introspection)
checkdepends=(cairo)
provides=(libfprint libfprint-2.so)
conflicts=(libfprint)
groups=(fprint)
_commit=db70f8a16a81220256d861e704c2b771668754a5
source=("git+https://github.com/Aperre/libfprint-elitebook.git#commit=$_commit")
sha256sums=('SKIP')

pkgver() {
  echo $pkgver
}

prepare() {
  cd $pkgname
}

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

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

# vim:set sw=2 sts=-1 et: