summaryrefslogtreecommitdiff
path: root/community/xnee/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
committerroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
commit8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch)
tree03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/xnee/PKGBUILD
parente445a313723389ba9ee1fded025c567dae5b21ea (diff)
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/xnee/PKGBUILD')
-rw-r--r--community/xnee/PKGBUILD33
1 files changed, 33 insertions, 0 deletions
diff --git a/community/xnee/PKGBUILD b/community/xnee/PKGBUILD
new file mode 100644
index 000000000..9c558c1ad
--- /dev/null
+++ b/community/xnee/PKGBUILD
@@ -0,0 +1,33 @@
+# $Id: PKGBUILD 94092 2013-07-14 11:19:44Z jlichtblau $
+# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
+# Contributor: Jaroslaw Swierczynski <swiergot@aur.archlinux.org>
+
+pkgname=xnee
+pkgver=3.16
+pkgrel=1
+pkgdesc="A program to record, distribute, and replay X (X11) protocol data"
+arch=('i686' 'x86_64')
+url="http://xnee.wordpress.com/"
+license=('GPL3')
+depends=('gtk2' 'libxtst')
+makedepends=('texinfo')
+optdepends=('xosd: feedback support')
+options=('!libtool' '!emptydirs')
+source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz
+ gnee.desktop)
+sha256sums=('07393d84d7abfab607b5ba078a0c32411815b7c883317356f6b92f7bbf3176fe'
+ 'de42d419a46083e39a9b6d60c045c1cd68deb793cc5166a86df81dff608387c1')
+
+build() {
+ cd ${srcdir}/$pkgname-$pkgver
+
+ ./configure --prefix=/usr --enable-gui --enable-lib --disable-static --disable-static-programs
+ make
+}
+
+package() {
+ cd ${srcdir}/$pkgname-$pkgver
+
+ make DESTDIR=${pkgdir} install
+ install -Dm644 ${srcdir}/gnee.desktop ${pkgdir}/usr/share/applications/gnee.desktop
+}