diff options
Diffstat (limited to 'extra/libdbusmenu-qt/Pkgfile')
-rw-r--r-- | extra/libdbusmenu-qt/Pkgfile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/extra/libdbusmenu-qt/Pkgfile b/extra/libdbusmenu-qt/Pkgfile new file mode 100644 index 000000000..a4a61d3cc --- /dev/null +++ b/extra/libdbusmenu-qt/Pkgfile @@ -0,0 +1,24 @@ +# Description: Librairie nécessaire pour implémenter dbus sous Qt +# URL: http://people.canonical.com/~agateau/dbusmenu/ +# Maintainer: NuTyX core team +# Packager: lesibel at free dot fr +# Depends on: cmake, qt, doxygen +# Run on: qt + +name=libdbusmenu-qt +version=0.8.2 +release=1 + +source=(http://launchpad.net/$name/trunk/$version/+download/$name-$version.tar.bz2 ) + +build() { + cd $name-$version + mkdir build + cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr .. \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_SKIP_RPATH=OFF + make + make DESTDIR=$PKG install +} + |