desktop/zeroconf-ioslave/PKGBUILD

36 lines
805 B
Bash
Raw Normal View History

2013-12-18 02:36:04 +08:00
# Include global configuration
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)
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`
'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
}