diff options
Diffstat (limited to 'community/gtkhotkey/PKGBUILD')
-rw-r--r-- | community/gtkhotkey/PKGBUILD | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/community/gtkhotkey/PKGBUILD b/community/gtkhotkey/PKGBUILD deleted file mode 100644 index ea0b42b8d..000000000 --- a/community/gtkhotkey/PKGBUILD +++ /dev/null @@ -1,40 +0,0 @@ -# $Id: PKGBUILD 81675 2012-12-26 12:18:55Z fyan $ -# Maintainer: Felix Yan <felixonmars@gmail.com> -# Contributor: kiefer <jorgelmadrid@gmail.com> -# Contributor: Alessio Sergi <asergi at archlinux dot us> -# Contributor: Gaute Hope <eg@gaute.vetsj.com> -# Contributor: Marcos Heredia <chelqo@gmail.com> - -pkgname=gtkhotkey -pkgver=0.2.1 -pkgrel=8 -pkgdesc="Platform independent hotkey handling for Gtk+ applications" -arch=('i686' 'x86_64') -url="https://launchpad.net/gtkhotkey" -license=('LGPL3') -depends=('gtk2') -makedepends=('intltool') -options=('!libtool') -source=("http://launchpad.net/$pkgname/0.2/$pkgver/+download/$pkgname-$pkgver.tar.gz") -md5sums=('bfdc73e68e9adbe0d506d31a25862914') - -build() { - cd "$srcdir/$pkgname-$pkgver" - - # doc path fix - sed -i '/gtkhotkeydocdir/s/\${prefix}/\${datadir}/g' Makefile.{am,in} - - # glib2 fix - sed -i 's|glib/gquark\.h|glib.h|' src/gtk-hotkey-error.h - sed -i 's|glib/gtypes\.h|glib.h|' src/x11/tomboykeybinder.h - - ./configure --prefix=/usr \ - --disable-static - make -} - -package() { - cd "$srcdir/$pkgname-$pkgver" - - make DESTDIR="$pkgdir/" install -} |