summaryrefslogtreecommitdiff
path: root/community/lxterminal/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/lxterminal/PKGBUILD')
-rw-r--r--community/lxterminal/PKGBUILD35
1 files changed, 20 insertions, 15 deletions
diff --git a/community/lxterminal/PKGBUILD b/community/lxterminal/PKGBUILD
index 9751bc21a..66715f3b2 100644
--- a/community/lxterminal/PKGBUILD
+++ b/community/lxterminal/PKGBUILD
@@ -1,34 +1,39 @@
-# $Id: PKGBUILD 71600 2012-05-30 16:08:38Z bpiotrowski $
-# Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl>
+# $Id: PKGBUILD 111033 2014-05-12 03:35:45Z bgyorgy $
+# Maintainer: Balló György <ballogyor+arch at gmail dot com>
+# Contributor: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
# Contributor: Angel Velasquez <angvp@archlinux.org>
# Contributor: Geoffroy Carrier <geoffroy.carrier@koon.fr>
pkgname=lxterminal
pkgver=0.1.11
-pkgrel=2
+pkgrel=3
pkgdesc="VTE-based terminal emulator (part of LXDE)"
arch=('i686' 'x86_64')
license=('GPL2')
url="http://lxde.org/"
groups=('lxde')
-depends=('fontconfig' 'libx11' 'glib2' 'vte' 'gtk2')
-makedepends=('pkgconfig' 'intltool')
-source=(http://downloads.sourceforge.net/sourceforge/lxde/${pkgname}-${pkgver}.tar.gz
- shift-keybinds.patch)
+depends=('vte')
+makedepends=('intltool')
+source=(http://downloads.sourceforge.net/lxde/${pkgname}-${pkgver}.tar.gz
+ fix-keybinds.patch)
md5sums=('fd9140b45c0f28d021253c4aeb8c4aea'
- '7eff715e02181b006b1912cd041b7f1a')
+ '1919977c8c745e65129dbe468b8dcbeb')
-build() {
- cd "$srcdir"/$pkgname-$pkgver
+prepare() {
+ cd "$srcdir"/$pkgname-$pkgver
- patch -Np1 -i "$srcdir"/shift-keybinds.patch
+ # Filter out key events of terminal keybinds
+ patch -Np1 -i ../fix-keybinds.patch
+}
- ./configure --sysconfdir=/etc --prefix=/usr
- make
+build() {
+ cd "$srcdir"/$pkgname-$pkgver
+ ./configure --sysconfdir=/etc --prefix=/usr
+ make
}
package() {
- cd "$srcdir"/$pkgname-$pkgver
- make DESTDIR="$pkgdir" install
+ cd "$srcdir"/$pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
}