summaryrefslogtreecommitdiff
path: root/community/mate-panel/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/mate-panel/PKGBUILD')
-rw-r--r--community/mate-panel/PKGBUILD38
1 files changed, 38 insertions, 0 deletions
diff --git a/community/mate-panel/PKGBUILD b/community/mate-panel/PKGBUILD
new file mode 100644
index 000000000..9fa14e4a8
--- /dev/null
+++ b/community/mate-panel/PKGBUILD
@@ -0,0 +1,38 @@
+# Maintainer : Martin Wimpress <code@flexion.org>
+
+pkgname=mate-panel
+pkgver=1.6.2
+pkgrel=1
+pkgdesc="The MATE Panel"
+url="http://mate-desktop.org"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dbus-glib' 'dconf' 'gtk2' 'libmatewnck' 'libcanberra' 'libice'
+ 'libmateweather' 'librsvg' 'libsm'
+ 'libsoup' 'libxau' 'mate-desktop' 'mate-file-manager'
+ 'mate-menus' 'mate-session-manager' 'mate-window-manager')
+makedepends=('gobject-introspection' 'mate-common' 'mate-doc-utils'
+ 'networkmanager' 'perl-xml-parser')
+options=('!emptydirs')
+groups=('mate')
+source=("http://pub.mate-desktop.org/releases/1.6/${pkgname}-${pkgver}.tar.xz")
+sha1sums=('a02d8a678b9235f231002feb4ecef7171939161e')
+install=${pkgname}.install
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ ./configure \
+ --prefix=/usr \
+ --libexecdir=/usr/lib/${pkgname} \
+ --sysconfdir=/etc \
+ --localstatedir=/var \
+ --enable-introspection \
+ --disable-static \
+ --disable-scrollkeeper
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}