summaryrefslogtreecommitdiff
path: root/extra/libdbusmenu-qt
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2011-05-04 10:10:35 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2011-05-04 10:10:35 -0300
commitb9ab7ef683fd366635faca49342ee005846037ab (patch)
tree3bb0ff57a43d068e85dc5318887f700b071c7f8f /extra/libdbusmenu-qt
parent7046a475b24925c0ec7816ef7d2cdcf3b9cd4eb0 (diff)
parentab1410d33401cf1fc4a384bb0b2d9901c8fe8d14 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/gimmie/PKGBUILD community/glipper-old/PKGBUILD community/glipper/PKGBUILD community/lcms2/PKGBUILD community/libpanelappletmm/PKGBUILD community/panflute/PKGBUILD community/sensors-applet/PKGBUILD community/wtf/PKGBUILD community/xmonad-log-applet/PKGBUILD core/binutils/PKGBUILD core/tzdata/PKGBUILD extra/a52dec/PKGBUILD extra/aubio/PKGBUILD extra/automoc4/PKGBUILD extra/deskbar-applet/PKGBUILD extra/eject/PKGBUILD extra/ekiga/PKGBUILD extra/gnome-netstatus/PKGBUILD extra/gnome-python-desktop/PKGBUILD extra/htdig/PKGBUILD extra/ktorrent/PKGBUILD extra/libgail-gnome/PKGBUILD extra/libktorrent/PKGBUILD extra/libofa/PKGBUILD extra/netspeed-applet/PKGBUILD extra/openexr/PKGBUILD extra/postgresql/PKGBUILD extra/pulseaudio-mixer-applet/PKGBUILD extra/seahorse-plugins/PKGBUILD extra/telepathy-qt4/PKGBUILD libre/kernel26-libre/PKGBUILD testing/libtool/PKGBUILD testing/xfsprogs/PKGBUILD
Diffstat (limited to 'extra/libdbusmenu-qt')
-rw-r--r--extra/libdbusmenu-qt/PKGBUILD19
1 files changed, 10 insertions, 9 deletions
diff --git a/extra/libdbusmenu-qt/PKGBUILD b/extra/libdbusmenu-qt/PKGBUILD
index 4a1df9eee..674648c88 100644
--- a/extra/libdbusmenu-qt/PKGBUILD
+++ b/extra/libdbusmenu-qt/PKGBUILD
@@ -1,29 +1,30 @@
-# $Id: PKGBUILD 117011 2011-03-27 14:11:17Z andrea $
+# $Id: PKGBUILD 122259 2011-05-03 14:55:26Z andrea $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
pkgname=libdbusmenu-qt
-pkgver=0.8.1
+pkgver=0.8.2
pkgrel=1
pkgdesc="A library that provides a Qt implementation of the DBusMenu spec"
arch=('i686' 'x86_64' 'mips64el')
url="https://launchpad.net/libdbusmenu-qt"
license=('GPL')
depends=('qt')
-makedepends=('cmake' 'doxygen')
+makedepends=('cmake')
source=("http://launchpad.net/${pkgname}/trunk/${pkgver}/+download/${pkgname}-${pkgver}.tar.bz2")
-md5sums=('495bf59b9fcc00e4260fd5acbb21b78b')
+md5sums=('88be2548e00acf988c66ed3a35844f64')
build() {
- cd ${srcdir}
+ cd "${srcdir}"
mkdir build
cd build
cmake ../${pkgname}-${pkgver} \
-DCMAKE_INSTALL_PREFIX=/usr \
- -DCMAKE_BUILD_TYPE=Release
+ -DCMAKE_BUILD_TYPE=Release \
+ -DWITH_DOC=OFF
make
}
package() {
- cd ${srcdir}/build
- make DESTDIR=${pkgdir} install
-}
+ cd "${srcdir}/build"
+ make DESTDIR="${pkgdir}" install
+}