mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-26 14:42:12 +08:00
36 lines
805 B
Bash
36 lines
805 B
Bash
# Include global configuration
|
|
source ../kdeapps.conf
|
|
|
|
pkgname=zeroconf-ioslave
|
|
pkgver=${_kdever}
|
|
pkgrel=1
|
|
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')
|
|
source=("$_mirror/${pkgname}-$_kdever.tar.xz"{,.sig})
|
|
sha256sums=(`grep ${pkgname}-$_kdever.tar.xz ../kdeapps.sums | cut -d " " -f1`
|
|
'SKIP')
|
|
validpgpkeys=(${Avalidpgpkeys[@]})
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake_kf5 ../${pkgname}-${pkgver}
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR=${pkgdir} install
|
|
}
|