summaryrefslogtreecommitdiff
path: root/community/lxterminal/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/lxterminal/PKGBUILD')
-rw-r--r--community/lxterminal/PKGBUILD21
1 files changed, 14 insertions, 7 deletions
diff --git a/community/lxterminal/PKGBUILD b/community/lxterminal/PKGBUILD
index 43ee1f6d2..9751bc21a 100644
--- a/community/lxterminal/PKGBUILD
+++ b/community/lxterminal/PKGBUILD
@@ -1,9 +1,11 @@
-# $Id: PKGBUILD 52827 2011-07-28 23:21:06Z angvp $
-# # Maintainer: Angel Velasquez <angvp@archlinux.org>
+# $Id: PKGBUILD 71600 2012-05-30 16:08:38Z bpiotrowski $
+# Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl>
+# Contributor: Angel Velasquez <angvp@archlinux.org>
# Contributor: Geoffroy Carrier <geoffroy.carrier@koon.fr>
+
pkgname=lxterminal
pkgver=0.1.11
-pkgrel=1
+pkgrel=2
pkgdesc="VTE-based terminal emulator (part of LXDE)"
arch=('i686' 'x86_64')
license=('GPL2')
@@ -11,17 +13,22 @@ 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)
-md5sums=('fd9140b45c0f28d021253c4aeb8c4aea')
+source=(http://downloads.sourceforge.net/sourceforge/lxde/${pkgname}-${pkgver}.tar.gz
+ shift-keybinds.patch)
+md5sums=('fd9140b45c0f28d021253c4aeb8c4aea'
+ '7eff715e02181b006b1912cd041b7f1a')
build() {
- cd "$srcdir/$pkgname-$pkgver"
+ cd "$srcdir"/$pkgname-$pkgver
+
+ patch -Np1 -i "$srcdir"/shift-keybinds.patch
+
./configure --sysconfdir=/etc --prefix=/usr
make
}
package() {
- cd "$srcdir/$pkgname-$pkgver"
+ cd "$srcdir"/$pkgname-$pkgver
make DESTDIR="$pkgdir" install
}