diff options
author | Daniel Araujo | 2020-05-26 21:33:36 +0100 |
---|---|---|
committer | Daniel Araujo | 2020-05-26 21:33:36 +0100 |
commit | 0a4a8483bb8d21be4e57c36076bfbc3b44eb5327 (patch) | |
tree | 8b257d2a0c28878b4bb9f9aef0919f3f3f50049a | |
download | aur-0a4a8483bb8d21be4e57c36076bfbc3b44eb5327.tar.gz |
First AUR release
Took 4 years.
-rw-r--r-- | .SRCINFO | 15 | ||||
-rw-r--r-- | PKGBUILD | 24 |
2 files changed, 39 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..3e8962e4ec47 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,15 @@ +pkgbase = click4ever + pkgdesc = An auto clicker for Linux running X11. This program will generate potentially thousands of clicks per second at where your mouse cursor is. + pkgver = 1.0.2 + pkgrel = 1 + url = https://github.com/daniel-araujo/click4ever + arch = x86_64 + license = GPL3 + makedepends = git + makedepends = autoconf + depends = xdotool + source = git+https://github.com/daniel-araujo/click4ever.git#tag=v1.0.2 + md5sums = SKIP + +pkgname = click4ever + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..cd7a1b54e465 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,24 @@ +# Maintainer: Daniel Araujo <contact@daniel-araujo.pt> +pkgname='click4ever' +pkgver='1.0.2' +pkgrel='1' +pkgdesc='An auto clicker for Linux running X11. This program will generate potentially thousands of clicks per second at where your mouse cursor is.' +url='https://github.com/daniel-araujo/click4ever' +arch=('x86_64') +license=('GPL3') +depends=('xdotool') +makedepends=('git' 'autoconf') +source=("git+https://github.com/daniel-araujo/click4ever.git#tag=v1.0.2") +md5sums=('SKIP') + +build() { + cd click4ever + autoreconf -i + ./configure --prefix=/usr + make +} + +package() { + cd click4ever + make DESTDIR="$pkgdir/" install +}
\ No newline at end of file |