mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 11:02:13 +08:00
32 lines
862 B
Bash
32 lines
862 B
Bash
# maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
|
|
pkgname=ktp-accounts-kcm
|
|
pkgver=0.8.1
|
|
pkgrel=2
|
|
pkgdesc="KCM Module for configuring Telepathy Instant Messaging Accounts"
|
|
arch=('x86_64')
|
|
url="http://www.kde.org"
|
|
license=('GPL')
|
|
depends=('kdelibs' 'ktp-common-internals' 'ktp-contact-list')
|
|
makedepends=('cmake' 'automoc4')
|
|
optdepends=('telepathy-gabble: XMPP/Jabber/GTalk support'
|
|
'telepathy-haze: all protocols supported by libpurple')
|
|
groups=('kde-telepathy')
|
|
source=("ftp://mirrors.mit.edu/kde/stable/kde-telepathy/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2")
|
|
md5sums=('3d74afa01fb4e88bad0ca48381c4ba9f')
|
|
|
|
build() {
|
|
cd "${srcdir}"
|
|
mkdir build
|
|
cd build
|
|
cmake ../${pkgname}-${pkgver} \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=Release
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}"/build
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|