mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
31 lines
823 B
Bash
31 lines
823 B
Bash
# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
|
|
pkgname=ktp-common-internals
|
|
pkgver=0.9.0
|
|
pkgrel=2
|
|
pkgdesc="Common libraries for telepathy-kde"
|
|
arch=('x86_64')
|
|
url="http://www.kde.org"
|
|
license=('GPL')
|
|
depends=('kdelibs' 'telepathy-qt>=0.9.5' 'telepathy-logger-qt' 'telepathy-mission-control' 'kdeutils-kwallet' 'libkpeople>=0.3.0' 'libotr>=4.0.0')
|
|
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=('3fb590f861fa1b342c2ddadb2ed3ee57')
|
|
|
|
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
|
|
}
|