build: PKGBUILD for ArchLinux
[reset-trackpoint-fix.git] / PKGBUILD
1 # Maintainer: Andrew Sichevoi (thekondor.net)
2
3 pkgname=reset-trackpoint-fix
4 pkgver=0.0.1
5 pkgrel=1
6 pkgdesc="Tiny w/a for Lenovo Thinkpad's trackpoint/trackpad which deads on laptop resume."
7 arch=('x86_64')
8 url="https://github.com/thekondor/${pkgname}"
9 license=('MPL')
10 makedepends=(
11   'make'
12   'systemd'
13 )
14 source=("${pkgname}-${pkgver}.tar.gz::https://github.com/thekondor/${pkgname}/archive/v${pkgver}.tar.gz")
15 sha256sums=('12e3f89854f9ada6b5d1a055e76c12765ee6eb02735e8b8e84359845d049df7e')
16 install='PKGBUILD.install'
17
18 package() {
19   cd "${pkgname}-${pkgver}"
20   DESTDIR=${pkgdir} make install
21 }
22