desktop/ktp-auth-handler/PKGBUILD

34 lines
838 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-auth-handler/
# Include global configuration
source ../kdeapps.conf
2013-10-30 22:18:07 +08:00
pkgname=ktp-auth-handler
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
pkgdesc="Telepathy contact list application "
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')
2015-04-08 03:31:53 +08:00
depends=('ktp-common-internals' 'kdewebkit' 'qca-qt5')
makedepends=('extra-cmake-modules')
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})
2015-04-08 03:31:53 +08:00
prepare() {
mkdir -p build
}
2013-10-30 22:18:07 +08:00
build() {
cd build
2015-04-08 03:31:53 +08:00
cmake_kf5 ../${pkgname}-${pkgver}
2013-10-30 22:18:07 +08:00
make
}
package() {
cd build
2015-04-08 03:31:53 +08:00
make DESTDIR=${pkgdir} install
2013-10-30 22:18:07 +08:00
}