diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/xnee |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/xnee')
-rw-r--r-- | community/xnee/ChangeLog | 2 | ||||
-rw-r--r-- | community/xnee/PKGBUILD | 24 |
2 files changed, 26 insertions, 0 deletions
diff --git a/community/xnee/ChangeLog b/community/xnee/ChangeLog new file mode 100644 index 000000000..062ec3b32 --- /dev/null +++ b/community/xnee/ChangeLog @@ -0,0 +1,2 @@ +2009-12-25 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * Update to major release 3.05 diff --git a/community/xnee/PKGBUILD b/community/xnee/PKGBUILD new file mode 100644 index 000000000..25effed5e --- /dev/null +++ b/community/xnee/PKGBUILD @@ -0,0 +1,24 @@ +# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> +# Contributor: Jaroslaw Swierczynski <swiergot@aur.archlinux.org> + +pkgname=xnee +pkgver=3.05 +pkgrel=1 +pkgdesc="A program to record, distribute, and replay X (X11) protocol data" +arch=('i686' 'x86_64') +url="http://www.sandklef.com/xnee/" +license=('GPL3') +depends=('gtk2' 'libgnomeui' 'libxtst') +makedepends=('texinfo') +options=('!libtool' '!emptydirs') +source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz) +md5sums=('0ba4ea4f6102bcc0b478f4a6fe787b0b') + +build() { + cd ${srcdir}/$pkgname-$pkgver + + ./configure --prefix=/usr --disable-gnome-applet + make || return 1 + make DESTDIR=${pkgdir} install +} + |