mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 14:17:15 +08:00
36 lines
908 B
Bash
36 lines
908 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Neophytos Kolokotronis <tetris4@gmail.com>
|
|
|
|
pkgname=ktp-contact-applet
|
|
pkgver=0.5.0
|
|
pkgrel=1
|
|
pkgdesc="Plasma applet for displaying contacts"
|
|
arch=('any')
|
|
url="http://www.kde.org"
|
|
license=('GPL')
|
|
depends=('ktp-common-internals' 'kde-workspace')
|
|
makedepends=('cmake' 'automoc4')
|
|
conflicts=('telepathy-kde-contact-applet')
|
|
replaces=('telepathy-kde-contact-applet')
|
|
provides=('telepathy-kde-contact-applet')
|
|
groups=('kde-telepathy')
|
|
categories=('utils' 'communication')
|
|
source=("ftp://mirrors.mit.edu/kde/unstable/kde-telepathy/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2")
|
|
md5sums=('0fa44b7c230507516631084f02f6fd34')
|
|
|
|
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
|
|
} |