2013-12-18 02:36:04 +08:00
|
|
|
# Include global configuration
|
2015-04-06 03:50:45 +08:00
|
|
|
source ../kdeapps.conf
|
2013-06-26 05:03:00 +08:00
|
|
|
|
2014-03-26 05:32:05 +08:00
|
|
|
pkgname=zeroconf-ioslave
|
2013-06-26 05:03:00 +08:00
|
|
|
pkgver=${_kdever}
|
2017-03-11 19:09:51 +08:00
|
|
|
pkgrel=1
|
2017-12-29 06:32:19 +08:00
|
|
|
pkgdesc='Network Monitor for DNS-SD services (Zeroconf)'
|
|
|
|
url='https://www.kde.org/applications/internet/'
|
|
|
|
arch=(x86_64)
|
|
|
|
license=(GPL LGPL FDL)
|
|
|
|
groups=(kde-applications kdenetwork)
|
|
|
|
depends=(kio kdnssd)
|
|
|
|
makedepends=(extra-cmake-modules)
|
|
|
|
conflicts=(kdenetwork-zeroconf-ioslave)
|
|
|
|
replaces=(kdenetwork-zeroconf-ioslave)
|
2015-05-14 05:17:22 +08:00
|
|
|
options=('docs' 'debug')
|
2017-12-29 06:32:19 +08:00
|
|
|
source=("$_mirror/${pkgname}-$_kdever.tar.xz"{,.sig})
|
|
|
|
sha256sums=(`grep ${pkgname}-$_kdever.tar.xz ../kdeapps.sums | cut -d " " -f1`
|
2016-12-21 05:48:24 +08:00
|
|
|
'SKIP')
|
2017-08-11 00:14:23 +08:00
|
|
|
validpgpkeys=(${Avalidpgpkeys[@]})
|
2013-06-26 05:03:00 +08:00
|
|
|
|
2017-12-29 06:32:19 +08:00
|
|
|
prepare() {
|
|
|
|
mkdir -p build
|
|
|
|
}
|
|
|
|
|
2013-06-26 05:03:00 +08:00
|
|
|
build() {
|
2017-12-29 06:32:19 +08:00
|
|
|
cd build
|
|
|
|
cmake_kf5 ../${pkgname}-${pkgver}
|
|
|
|
make
|
2013-06-26 05:03:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2017-12-29 06:32:19 +08:00
|
|
|
cd build
|
|
|
|
make DESTDIR=${pkgdir} install
|
2013-06-26 05:03:00 +08:00
|
|
|
}
|