aboutsummarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 6f250141645850f135f78ced42a217bf3015e706 (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
# Maintainer: Chris Mustola <chris.mustola at gmail dot com>

pkgname=touchpad_config
pkgver=1.0
pkgrel=1
pkgdesc="A simple tool that uses xinput to enable Tap to click and natural scrolling on a touchpad"
arch=('x86_64')
license=('GPL-3')
depends=('xorg-xinput')
makedepends=('gcc')
provides=('touchpad_config')
source=("touchpad_config::git+https://gitlab.com/Bettehem/touchpad_config.git")
md5sums=('SKIP')


build() {
	cd "$srcdir/$pkgname"
	make
}

package() {
	cd "$srcdir/$pkgname"
	make PREFIX="/usr" DESTDIR="$pkgdir" install
}