desktop/ktp-common-internals/PKGBUILD

36 lines
1011 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-common-internals/
# Include global configuration
source ../kdeapps.conf
2013-10-30 22:18:07 +08:00
pkgname=ktp-common-internals
2015-04-08 03:31:53 +08:00
pkgver=${_kdever}
2015-10-19 00:19:36 +08:00
pkgrel=1
2013-10-30 22:18:07 +08:00
pkgdesc="Common libraries for telepathy-kde"
arch=('x86_64')
2015-04-08 03:31:53 +08:00
url="http://community.kde.org/Real-Time_Communication_and_Collaboration"
2013-10-30 22:18:07 +08:00
license=('GPL')
2015-09-15 13:46:28 +08:00
depends=('hicolor-icon-theme' 'kaccounts-integration' 'knotifyconfig' 'kpeople' 'ktexteditor' 'telepathy-logger-qt' 'libotr'
'telepathy-accounts-signon')
2015-04-08 03:31:53 +08:00
makedepends=('extra-cmake-modules' 'kdoctools' 'python3' 'doxygen')
2013-10-30 22:18:07 +08:00
groups=('kde-telepathy')
install=${pkgname}.install
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
}