desktop/libkvkontakte/PKGBUILD
2015-12-13 00:31:29 +00:00

29 lines
640 B
Bash

# Include global configuration
source ../kdeapps.conf
pkgname=libkvkontakte
pkgver=4.70.0
pkgrel=1
pkgdesc="C++ library for asynchronous interaction with VK social network via its web API"
arch=('x86_64')
url='https://projects.kde.org/projects/extragear/libs/libkvkontakte'
license=('GPL')
depends=('kio' 'ki18n' 'kdewebkit' 'kcoreaddons' 'kwidgetsaddons')
makedepends=('pkg-config' 'extra-cmake-modules' 'kdoctools' 'git')
source=("git://anongit.kde.org/libkvkontakte.git")
md5sums=('SKIP')
prepare() {
mkdir -p build
}
build() {
cd build
cmake_kf5 ../${pkgname}
make
}
package() {
cd build
make DESTDIR=${pkgdir} install
}