diff options
Diffstat (limited to 'community/knemo/PKGBUILD')
-rw-r--r-- | community/knemo/PKGBUILD | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/community/knemo/PKGBUILD b/community/knemo/PKGBUILD new file mode 100644 index 000000000..5995a13dd --- /dev/null +++ b/community/knemo/PKGBUILD @@ -0,0 +1,40 @@ +# $Id: PKGBUILD 85916 2013-03-08 23:40:41Z foutrelis $ +# Maintainer: Laurent Carlier <lordheavym@gmail.com> +# Contributor: 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.6 +pkgrel=3 +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' 'libnl' '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=('42b35d4d48698a2f514adeb2ca872408') + +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 +} |