summaryrefslogtreecommitdiffstats
path: root/abs/extra/terminal/PKGBUILD
blob: 857696eb9a96e90fe02b800f92dced46138b347f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# $Id: PKGBUILD 28221 2009-02-28 11:48:48Z andyrtr $
# Maintainer: Tobias Kieslich <tobias funnychar archlinux.org>
# Contributor: Aurelien Foret <orelien@chez.com>

pkgname=terminal
pkgver=0.2.10
pkgrel=1
pkgdesc="A modern terminal emulator primarly for the Xfce desktop environment"
arch=(i686 x86_64)
license=('GPL2')
url="http://www.xfce.org/projects/terminal/"
groups=('xfce4')
depends=('exo>=0.3.100' "vte>=0.17.4-2" 'dbus-glib>=0.78'
	 'startup-notification>=0.9' 'hicolor-icon-theme')
makedepends=('pkgconfig')
options=('!libtool')
install=terminal.install
source=(http://www.xfce.org/archive/xfce-4.6.0/src/Terminal-${pkgver}.tar.bz2
	terminal-dont-die-on-dbus-kill.patch)
md5sums=('f6cefa97cf5cad558187267783ffce8a'
         '7cff5c513739737a0ed2109354538241')

build() {
  cd ${srcdir}/Terminal-${pkgver}
  patch -Np0 -i ${srcdir}/terminal-dont-die-on-dbus-kill.patch || return 1
  ./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib/xfce4 \
    --localstatedir=/var --disable-static || return 1
  make || return 1
  make DESTDIR=${pkgdir} install || return 1
}