diff options
Diffstat (limited to 'extra/libdbusmenu-qt/PKGBUILD')
-rw-r--r-- | extra/libdbusmenu-qt/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/extra/libdbusmenu-qt/PKGBUILD b/extra/libdbusmenu-qt/PKGBUILD new file mode 100644 index 000000000..98dda1288 --- /dev/null +++ b/extra/libdbusmenu-qt/PKGBUILD @@ -0,0 +1,29 @@ +# $Id: PKGBUILD 117011 2011-03-27 14:11:17Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=libdbusmenu-qt +pkgver=0.8.1 +pkgrel=1 +pkgdesc="A library that provides a Qt implementation of the DBusMenu spec" +arch=('i686' 'x86_64') +url="https://launchpad.net/libdbusmenu-qt" +license=('GPL') +depends=('qt') +makedepends=('cmake' 'doxygen') +source=("http://launchpad.net/${pkgname}/trunk/${pkgver}/+download/${pkgname}-${pkgver}.tar.bz2") +md5sums=('495bf59b9fcc00e4260fd5acbb21b78b') + +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 +} |