core/kdeplasma-applets-plasma-nm/PKGBUILD
totte 0a5c934c0c Merge branch 'unstable' into testing
Conflicts:
	apper/PKGBUILD
	avogadro/PKGBUILD
	calligra-l10n/PKGBUILD
	calligra/PKGBUILD
	digikam/PKGBUILD
	freerdp/PKGBUILD
	kapudan/PKGBUILD
	kde-baseapps-konsole/PKGBUILD
	kde-gtk-config/PKGBUILD
	kde-l10n/PKGBUILD
	kde-plasma-themes/PKGBUILD
	kde-runtime/PKGBUILD
	kde-sc.md5
	kde-workspace/PKGBUILD
	kdeedu-kalzium/PKGBUILD
	kdegames-kigo/PKGBUILD
	kdegames-libkdegames/PKGBUILD
	kdemultimedia-thumbnailers/PKGBUILD
	kdenetwork-kopete/PKGBUILD
	kdenetwork-kopete/kdenetwork.install
	kdepimlibs/PKGBUILD
	kdeplasma-applets-networkmanagement/PKGBUILD
	kdeplasma-applets-plasma-nm/PKGBUILD
	kdeutils-ark/PKGBUILD
	kdewebdev/PKGBUILD
	kscreen/PKGBUILD
	libkscreen/PKGBUILD
	libxklavier/PKGBUILD
	nepomuk-core/PKGBUILD
	partitionmanager/PKGBUILD
	support-pkg-meanwhile/PKGBUILD
	system-config-printer/PKGBUILD
	tools-pkg-akabeiclient/PKGBUILD
	tools-pkg-akabeicore/PKGBUILD
	tribe-partitionmanager/PKGBUILD
	tribe/PKGBUILD
	xscreensaver/PKGBUILD
2014-03-10 12:40:09 +01:00

37 lines
1.1 KiB
Bash

# Maintainer: Francesco Marinucci <franzmari[at]chakra-project[dot]it>
pkgname=kdeplasma-applets-plasma-nm
_pkgname=plasma-nm
pkgver=0.9.3.3
pkgrel=1
pkgdesc='Plasma applet written in QML for managing network connections'
arch=('x86_64')
url='https://projects.kde.org/projects/playground/network/plasma-nm'
license=('GPL2')
depends=('kde-workspace'
'libnm-qt'
'openconnect')
makedepends=('cmake'
'automoc4')
conflicts=('kdeplasma-applets-plasma-nm-git'
'kdeplasma-applets-networkmanagement')
screenshot="http://grulja.files.wordpress.com/2013/06/nm1.png?w=268&h=300"
source="http://download.kde.org/unstable/${_pkgname}/${_pkgname}-${pkgver}.tar.xz"
sha512sums=('51b9b4a2d861fd6d3deb1a28f977cb4e817ab5b14f512b4b2dd1f4a6bc43fc6e1d575930cd5c654e540c0d29200b17088f7026b7ab8d33341887e38cd13716aa')
build() {
cd $srcdir/${_pkgname}-${pkgver}
mkdir build
cd build
cmake .. \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release
make
}
package() {
cd $srcdir/${_pkgname}-${pkgver}
cd build
make DESTDIR="${pkgdir}" install
}