summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorFIL2015-08-27 12:26:31 +0300
committerFIL2015-08-27 12:26:31 +0300
commit50aeb38dec63978d41bc4b81838d26fdd8054167 (patch)
tree494ac68444a862f2b6fbab9655e9b0d4d7a1c8fb
downloadaur-50aeb38dec63978d41bc4b81838d26fdd8054167.tar.gz
Initial commit
-rw-r--r--.SRCINFO16
-rw-r--r--PKGBUILD14
2 files changed, 30 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..1ba962d4bd69
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,16 @@
+pkgbase = d2clr-git
+ pkgdesc = Auto click button 'Accept' in Dota 2 game
+ pkgver = 2014.12.18
+ pkgrel = 1
+ url = https://github.com/FTCr/d2clr
+ arch = i686
+ arch = x86_64
+ license = GPL3
+ depends = glibc
+ depends = dbus
+ depends = xdotool
+ source = git://github.com/FTCr/d2clr.git
+ md5sums = SKIP
+
+pkgname = d2clr-git
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..739b63c539ae
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,14 @@
+pkgname=d2clr-git
+pkgver=2014.12.18
+pkgrel=1
+pkgdesc="Auto click button 'Accept' in Dota 2 game"
+url="https://github.com/FTCr/d2clr"
+license=('GPL3')
+arch=('i686' 'x86_64')
+depends=('glibc' 'dbus' 'xdotool')
+source=("git://github.com/FTCr/d2clr.git")
+md5sums=('SKIP')
+build(){
+ cd "${srcdir}/d2clr"
+ make install PREFIX="${pkgdir}/usr"
+}