mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-27 12:42:13 +08:00
30 lines
720 B
Bash
30 lines
720 B
Bash
# maintainer: Giuseppe Calà <jiveaxe@gmail.com>
|
|
|
|
pkgname=libkpeople
|
|
pkgver=0.1.0
|
|
pkgrel=2
|
|
pkgdesc="A library that provides access to all contacts and the people who hold them."
|
|
arch=('x86_64')
|
|
url="http://www.kde.org"
|
|
license=('GPL')
|
|
depends=('kdelibs' 'shared-desktop-ontologies' 'nepomuk-core' 'soprano')
|
|
makedepends=('cmake' 'automoc4')
|
|
source=("http://download.kde.org/unstable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2")
|
|
md5sums=('3d5401b90eabbf6c230ba4b56d527c67')
|
|
|
|
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
|
|
}
|
|
|