mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
31 lines
778 B
Bash
31 lines
778 B
Bash
# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
|
|
pkgname=ktp-common-internals
|
|
pkgver=0.7.0
|
|
pkgrel=3
|
|
pkgdesc="Common libraries for telepathy-kde"
|
|
arch=('x86_64')
|
|
url="http://www.kde.org"
|
|
license=('GPL')
|
|
depends=('kdelibs' 'telepathy-logger-qt' 'telepathy-mission-control' 'kdeutils-kwallet' 'libkpeople')
|
|
makedepends=('cmake' 'automoc4')
|
|
groups=('kde-telepathy')
|
|
install=${pkgname}.install
|
|
source=("ftp://mirrors.mit.edu/kde/stable/kde-telepathy/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2")
|
|
md5sums=('c05944cc876c0d25220a776defca92b1')
|
|
|
|
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
|
|
}
|