mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
33 lines
989 B
Bash
33 lines
989 B
Bash
# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
# Contributions from Arch: https://www.archlinux.org/packages/extra/x86_64/telepathy-kde-desktop-applets/
|
|
|
|
pkgname=ktp-desktop-applets
|
|
pkgver=0.9.0
|
|
pkgrel=1
|
|
pkgdesc="The KDE-Telepathy Plasma desktop applets"
|
|
arch=('x86_64')
|
|
url="http://community.kde.org/Real-Time_Communication_and_Collaboration"
|
|
license=('GPL')
|
|
depends=('ktp-common-internals' 'kde-workspace')
|
|
makedepends=('cmake' 'automoc4')
|
|
groups=('kde-telepathy')
|
|
conflicts=('ktp-contact-applet' 'ktp-presence-applet')
|
|
replaces=('ktp-contact-applet' 'ktp-presence-applet')
|
|
provides=('ktp-contact-applet' 'ktp-presence-applet')
|
|
source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2")
|
|
md5sums=('d113bfa36422aee70609a451ba91decb')
|
|
|
|
build() {
|
|
mkdir build
|
|
cd build
|
|
cmake ../${pkgname}-${pkgver} \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=Release
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|