desktop/ktp-contact-runner/PKGBUILD

34 lines
865 B
Bash
Raw Normal View History

2015-04-08 03:31:53 +08:00
# Contributions from Arch: https://www.archlinux.org/packages/extra/x86_64/telepathy-kde-contact-runner/
# Include global configuration
source ../kdeapps.conf
2013-10-30 22:18:07 +08:00
pkgname='ktp-contact-runner'
2015-04-08 03:31:53 +08:00
pkgver=${_kdever}
2014-10-20 09:26:05 +08:00
pkgrel=1
2013-10-30 22:18:07 +08:00
arch=('x86_64')
2015-04-08 03:31:53 +08:00
url="https://community.kde.org/Real-Time_Communication_and_Collaboration"
2013-10-30 22:18:07 +08:00
license=('GPL')
pkgdesc='Finds entries from your KDE-Telepathy Contacts'
2015-04-08 03:31:53 +08:00
depends=('ktp-common-internals' 'krunner')
makedepends=('extra-cmake-modules' 'kdoctools' 'python3')
2013-10-30 22:18:07 +08:00
groups=('kde-telepathy')
source=("$_mirror/${pkgname}-$_kdever.tar.xz"{,.sig})
sha256sums=(`grep ${pkgname}-$_kdever.tar.xz ../kdeapps.sums | cut -d " " -f1`
'SKIP')
validpgpkeys=(${Avalidpgpkeys})
2013-10-30 22:18:07 +08:00
2015-04-08 03:31:53 +08:00
prepare() {
mkdir -p build
}
2013-10-30 22:18:07 +08:00
2015-04-08 03:31:53 +08:00
build() {
cd build
cmake_kf5 ../${pkgname}-${pkgver}
make
}
2013-10-30 22:18:07 +08:00
package() {
cd build
2015-04-08 03:31:53 +08:00
make DESTDIR=${pkgdir} install
}