summaryrefslogtreecommitdiff
path: root/community/mate-desktop/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/mate-desktop/PKGBUILD')
-rw-r--r--community/mate-desktop/PKGBUILD36
1 files changed, 36 insertions, 0 deletions
diff --git a/community/mate-desktop/PKGBUILD b/community/mate-desktop/PKGBUILD
new file mode 100644
index 000000000..caeed6036
--- /dev/null
+++ b/community/mate-desktop/PKGBUILD
@@ -0,0 +1,36 @@
+# $Id: PKGBUILD 104842 2014-01-27 11:23:45Z flexiondotorg $
+# Maintainer : Martin Wimpress <code@flexion.org>
+
+pkgname=mate-desktop
+pkgver=1.6.2
+pkgrel=2
+pkgdesc="Library with common API for various MATE modules"
+url="http://mate-desktop.org"
+arch=('i686' 'x86_64')
+license=(GPL LGPL)
+depends=('dconf' 'gtk2' 'hicolor-icon-theme' 'libunique' 'python2'
+ 'startup-notification' 'ttf-dejavu')
+makedepends=('mate-common' 'mate-doc-utils' 'perl-xml-parser')
+optdepends=('lightdm-gtk2-greeter: A lightweight display manager')
+options=('!emptydirs')
+groups=('mate')
+source=("http://pub.mate-desktop.org/releases/1.6/${pkgname}-${pkgver}.tar.xz")
+sha1sums=('413ef92f1aedf0ffbbf232ce6907211f0f4722a2')
+install=${pkgname}.install
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ PYTHON=/usr/bin/python2 ./configure \
+ --prefix=/usr \
+ --disable-static \
+ --disable-scrollkeeper \
+ --disable-schemas-compile \
+ --enable-gtk-doc \
+ --with-omf-dir=/usr/share/omf/${pkgname}
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}