summaryrefslogtreecommitdiff
path: root/community-staging/knemo/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community-staging/knemo/PKGBUILD')
-rw-r--r--community-staging/knemo/PKGBUILD40
1 files changed, 40 insertions, 0 deletions
diff --git a/community-staging/knemo/PKGBUILD b/community-staging/knemo/PKGBUILD
new file mode 100644
index 000000000..e4b1f4173
--- /dev/null
+++ b/community-staging/knemo/PKGBUILD
@@ -0,0 +1,40 @@
+# $Id: PKGBUILD 64272 2012-02-11 04:40:09Z heftig $
+# Maintainer: Andrea Scarpino <andrea@archlinux.org>
+# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Contributor: Stefano Zamprogno <stefano dot zamprogno at gmail dot com>
+
+pkgname=knemo
+pkgver=0.7.3
+pkgrel=2
+pkgdesc="The KDE Network Monitor"
+arch=('i686' 'x86_64')
+url="http://www.kde-apps.org/content/show.php?content=12956"
+license=('GPL')
+depends=('kdebase-workspace' 'wireless_tools' 'iw' 'libnl1'
+ 'gtk-update-icon-cache')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+options=('libtool')
+source=("http://www.kde-apps.org/CONTENT/content-files/12956-${pkgname}-${pkgver}.tar.bz2")
+md5sums=('24b5ec27b862ed7026ff643193952b78')
+
+build() {
+ cd ${srcdir}
+
+ mkdir build
+ cd build
+ cmake ../${pkgname}-${pkgver} \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_SKIP_RPATH=ON \
+ -DCMAKE_INSTALL_PREFIX=/usr
+ make
+}
+
+package() {
+ cd ${srcdir}/build
+
+ make DESTDIR=${pkgdir} install
+
+ # remove knemo autostart
+ rm -rf ${pkgdir}/usr/share/autostart
+}