summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 6c3e6afdd65e71efca1e8b52084fa7e8b451328f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: Daniel Araujo <contact@daniel-araujo.pt>
pkgname='click4ever'
pkgver='1.1.0'
pkgrel='1'
pkgdesc='An auto clicker for Linux running X11. A program that generates a lot of mouse clicks per second at the current position of the mouse until you move it away.'
url='https://github.com/daniel-araujo/click4ever'
arch=('x86_64')
license=('GPL3')
depends=('xdotool')
makedepends=('git' 'cmake')
source=("git+https://github.com/daniel-araujo/click4ever.git#tag=v1.1.0")
md5sums=('SKIP')

build() {
  mkdir -p click4ever/build
  cd click4ever/build
  cmake -DCMAKE_INSTALL_PREFIX=/usr --config Release ..
}

package() {
  cd click4ever/build
  make DESTDIR="$pkgdir/" install
}