desktop/akonadi-search/PKGBUILD
2015-12-04 23:26:22 +00:00

32 lines
656 B
Bash

source ../kdeapps.conf
pkgname=akonadi-search
pkgver=${_kdever}
pkgrel=1
pkgdesc="Libraries and daemons to implement searching in Akonadi"
url='https://projects.kde.org/akonadi-search'
arch=('x86_64')
license=('GPL' 'LGPL' 'FDL')
depends=(xapian-core akonadi-mime kcontacts kcalcore krunner)
makedepends=('extra-cmake-modules' 'kdoctools' 'boost')
options=('debug')
source=("$_mirror/${pkgname}-$_kdever.tar.xz")
sha256sums=(`grep ${pkgname}-$_kdever.tar.xz ../checksums.txt | cut -d " " -f1`)
prepare() {
mkdir -p build
}
build() {
cd build
cmake_kf5 ../${pkgname}-${pkgver}
make
}
package() {
cd build
make DESTDIR=${pkgdir} install
}