diff options
Diffstat (limited to 'community/xnee')
-rw-r--r-- | community/xnee/PKGBUILD | 16 | ||||
-rw-r--r-- | community/xnee/gnee.desktop | 9 | ||||
-rw-r--r-- | community/xnee/xnee.changelog | 5 |
3 files changed, 24 insertions, 6 deletions
diff --git a/community/xnee/PKGBUILD b/community/xnee/PKGBUILD index 0735311bb..a56b991be 100644 --- a/community/xnee/PKGBUILD +++ b/community/xnee/PKGBUILD @@ -1,24 +1,27 @@ -# $Id: PKGBUILD 82003 2013-01-05 15:43:50Z jlichtblau $ +# $Id: PKGBUILD 88303 2013-04-16 10:25:07Z bgyorgy $ # Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> # Contributor: Jaroslaw Swierczynski <swiergot@aur.archlinux.org> pkgname=xnee pkgver=3.15 -pkgrel=1 +pkgrel=2 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') +depends=('gtk2' 'libxtst') makedepends=('texinfo') +optdepends=('xosd: feedback support') options=('!libtool' '!emptydirs') -source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz) -sha256sums=('56e0b1cca36ebf95b6f7c82c7028ab8a9b5003728ca1044016031b489bc3e8cd') +source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz + gnee.desktop) +sha256sums=('56e0b1cca36ebf95b6f7c82c7028ab8a9b5003728ca1044016031b489bc3e8cd' + 'de42d419a46083e39a9b6d60c045c1cd68deb793cc5166a86df81dff608387c1') build() { cd ${srcdir}/$pkgname-$pkgver - ./configure --prefix=/usr --disable-gnome-applet + ./configure --prefix=/usr --enable-gui --enable-lib --disable-static --disable-static-programs make } @@ -26,4 +29,5 @@ package() { cd ${srcdir}/$pkgname-$pkgver make DESTDIR=${pkgdir} install + install -Dm644 ${srcdir}/gnee.desktop ${pkgdir}/usr/share/applications/gnee.desktop } diff --git a/community/xnee/gnee.desktop b/community/xnee/gnee.desktop new file mode 100644 index 000000000..c96850599 --- /dev/null +++ b/community/xnee/gnee.desktop @@ -0,0 +1,9 @@ +[Desktop Entry] +Name=Gnee +GenericName=X11 Recorder +Comment=For replay action under X11 environment +Exec=gnee +Icon=/usr/share/pixmaps/xnee.png +Terminal=false +Type=Application +Categories=Utility; diff --git a/community/xnee/xnee.changelog b/community/xnee/xnee.changelog index b93cdf5b5..b10864c83 100644 --- a/community/xnee/xnee.changelog +++ b/community/xnee/xnee.changelog @@ -1,3 +1,8 @@ +2013-04-16 Balló György <ballogyor+arch at gmail dot com> + * fix dependencies + * enable GUI and library + * add .desktop file + 2013-01-05 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> * xnee 3.15-1 |