summaryrefslogtreecommitdiff
path: root/testing/terminal/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'testing/terminal/PKGBUILD')
-rw-r--r--testing/terminal/PKGBUILD39
1 files changed, 39 insertions, 0 deletions
diff --git a/testing/terminal/PKGBUILD b/testing/terminal/PKGBUILD
new file mode 100644
index 000000000..5977a9227
--- /dev/null
+++ b/testing/terminal/PKGBUILD
@@ -0,0 +1,39 @@
+# $Id: PKGBUILD 157641 2012-04-29 02:53:40Z foutrelis $
+# Maintainer: Evangelos Foutras <evangelos@foutrelis.com>
+# Contributor: tobias <tobias funnychar archlinux.org>
+# Contributor: Aurelien Foret <orelien@chez.com>
+
+pkgname=terminal
+pkgver=0.4.8
+pkgrel=2
+pkgdesc="A modern terminal emulator primarly for the Xfce desktop environment"
+arch=('i686' 'x86_64')
+url="http://www.xfce.org/projects/terminal/"
+license=('GPL2')
+groups=('xfce4')
+depends=('exo' 'vte' 'dbus-glib' 'startup-notification' 'hicolor-icon-theme')
+makedepends=('pkgconfig' 'intltool')
+options=('!libtool')
+install=$pkgname.install
+source=(http://archive.xfce.org/src/apps/$pkgname/0.4/Terminal-$pkgver.tar.bz2)
+sha256sums=('fe5db0b7127ce87efa1e10f44d8915be88005b6ce4f0bfea6b64533e25cc788d')
+
+build() {
+ cd "$srcdir/Terminal-$pkgver"
+
+ ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --libexecdir=/usr/lib/xfce4 \
+ --localstatedir=/var \
+ --disable-static \
+ --disable-debug
+ make
+}
+
+package() {
+ cd "$srcdir/Terminal-$pkgver"
+ make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et: