summaryrefslogtreecommitdiff
path: root/community/mate-terminal/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/mate-terminal/PKGBUILD')
-rw-r--r--community/mate-terminal/PKGBUILD32
1 files changed, 32 insertions, 0 deletions
diff --git a/community/mate-terminal/PKGBUILD b/community/mate-terminal/PKGBUILD
new file mode 100644
index 000000000..8787ef79a
--- /dev/null
+++ b/community/mate-terminal/PKGBUILD
@@ -0,0 +1,32 @@
+# $Id: PKGBUILD 104248 2014-01-16 18:05:57Z flexiondotorg $
+# Maintainer : Martin Wimpress <code@flexion.org>
+# Contributor: Giovanni Ricciardi <kar98k.sniper@gmail.com>
+
+pkgname=mate-terminal
+pkgver=1.6.2
+pkgrel=1
+pkgdesc="The MATE Terminal Emulator"
+url="http://mate-desktop.org"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dbus' 'dconf' 'gtk2' 'libsm' 'mate-desktop' 'vte')
+makedepends=('docbook2x' 'mate-common' 'mate-doc-utils' 'perl-xml-parser')
+options=('!emptydirs')
+groups=('mate-extra')
+source=("http://pub.mate-desktop.org/releases/1.6/${pkgname}-${pkgver}.tar.xz")
+sha1sums=('951c006c5ee31da0d0da1ebad4d1e6648fe0e41b')
+install=${pkgname}.install
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ ./configure \
+ --prefix=/usr \
+ --disable-static \
+ --disable-scrollkeeper
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}