summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorIngo Bürk2017-01-27 09:41:38 +0100
committerIngo Bürk2017-01-27 09:41:38 +0100
commit54dd20df789ded4f06df23ce27747c5bf79b6d81 (patch)
treec6aa1507baf9b061a201caec79ed725512fe495b
downloadaur-54dd20df789ded4f06df23ce27747c5bf79b6d81.tar.gz
initial version
-rw-r--r--.SRCINFO20
-rw-r--r--.gitignore4
-rw-r--r--PKGBUILD24
3 files changed, 48 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..ae02d5a3dad3
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,20 @@
+pkgbase = yaxg-git
+ pkgdesc = Yet Another X Grabber
+ pkgver = latest
+ pkgrel = 1
+ url = https://github.com/DanielFGray/yaxg
+ arch = i686
+ arch = x86_64
+ license = custom
+ makedepends = git
+ optdepends = slop: for selecting regions and windows
+ optdepends = maim: for saving screenshots
+ optdepends = ffmpeg: for recording videos
+ optdepends = byzanz: for recording gifs
+ optdepends = libnotify: for notifications
+ provides = yaxg
+ source = yaxg-git::git+https://github.com/DanielFGray/yaxg.git
+ md5sums = SKIP
+
+pkgname = yaxg-git
+
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..957058cebe1d
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+pkg/
+src/
+yaxg-git/
+*.xz
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..b24500f1a448
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,24 @@
+# Maintainer: Ingo Bürk <admin at airblader dot de>
+pkgname=yaxg-git
+pkgver=latest
+pkgrel=1
+pkgdesc="Yet Another X Grabber"
+arch=('i686' 'x86_64')
+url="https://github.com/DanielFGray/yaxg"
+license=('custom')
+#depends=()
+optdepends=('slop: for selecting regions and windows'
+ 'maim: for saving screenshots'
+ 'ffmpeg: for recording videos'
+ 'byzanz: for recording gifs'
+ 'libnotify: for notifications')
+makedepends=('git')
+provides=('yaxg')
+#conflicts=()
+#groups=()
+source=("$pkgname::git+https://github.com/DanielFGray/yaxg.git")
+md5sums=('SKIP')
+
+package() {
+ install -Dm755 "${srcdir}/${pkgname}/yaxg" "${pkgdir}/usr/bin/yaxg"
+}