summaryrefslogtreecommitdiff
path: root/extra/appmenu-qt/PKGBUILD
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2012-02-13 01:08:38 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2012-02-13 01:08:38 -0300
commit6b1c32bde545b9e47ab1fe83fdfb722ca6218393 (patch)
treeac8f75aa35fc81be9eaffe905ab498e7713b2f84 /extra/appmenu-qt/PKGBUILD
parent2c721caa534df76621bf07705ed0ea80efe44f8b (diff)
parent0020cc650ff973f269f23332e82fc097254d0adc (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/ccze/PKGBUILD community/remind/PKGBUILD core/iw/PKGBUILD core/less/PKGBUILD extra/davfs2/PKGBUILD extra/ettercap/PKGBUILD extra/gtk-xfce-engine/PKGBUILD extra/imagemagick/PKGBUILD extra/kismet/PKGBUILD extra/libmp3splt/PKGBUILD extra/php/PKGBUILD extra/xfce4-verve-plugin/PKGBUILD multilib/lib32-glib2/PKGBUILD multilib/lib32-pcre/PKGBUILD multilib/wine/PKGBUILD staging/xorg-server/PKGBUILD
Diffstat (limited to 'extra/appmenu-qt/PKGBUILD')
-rw-r--r--extra/appmenu-qt/PKGBUILD29
1 files changed, 29 insertions, 0 deletions
diff --git a/extra/appmenu-qt/PKGBUILD b/extra/appmenu-qt/PKGBUILD
new file mode 100644
index 000000000..b41471824
--- /dev/null
+++ b/extra/appmenu-qt/PKGBUILD
@@ -0,0 +1,29 @@
+# $Id: PKGBUILD 149893 2012-02-11 12:05:06Z andrea $
+# Maintainer: Andrea Scarpino <andrea@archlinux.org>
+
+pkgname=appmenu-qt
+pkgver=0.2.4
+pkgrel=4
+pkgdesc="Allows Qt applications to export menus over DBus to a menu applet"
+arch=('i686' 'x86_64')
+url='https://launchpad.net/appmenu-qt'
+license=('GPL')
+depends=('libdbusmenu-qt')
+makedepends=('cmake')
+source=("http://launchpad.net/${pkgname}/trunk/${pkgver}/+download/${pkgname}-${pkgver}.tar.bz2")
+md5sums=('5266d3e77e424bce19f4bcd8f4ffd4bf')
+
+build() {
+ cd "${srcdir}"
+ mkdir build
+ cd build
+ cmake ../${pkgname}-${pkgver} \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_BUILD_TYPE="Release"
+ make
+}
+
+package() {
+ cd "${srcdir}"/build
+ make DESTDIR="${pkgdir}" install
+}