core/milou/PKGBUILD
2018-03-09 20:58:20 +00:00

34 lines
758 B
Bash

# Contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/milou
source ../plasma.conf
pkgname=milou
pkgver=${PVersion}
pkgrel=1
pkgdesc="A dedicated search application built on top of Baloo"
arch=('x86_64')
url='https://projects.kde.org/projects/kde/workspace/milou/'
license=('LGPL')
depends=(krunner)
makedepends=(extra-cmake-modules kdoctools python3)
groups=('plasma')
options=("debug")
source=("${PServer}/${pkgver}/${pkgname}-${PVersion}.tar.xz"{,.sig})
sha256sums=( $(getSum ${pkgname})
'SKIP' )
validpgpkeys=(${Pvalidpgpkeys[@]})
prepare() {
mkdir -p build
}
build() {
cd build
cmake_kf5 ../${pkgname}-${pkgver}
make
}
package() {
cd build
make DESTDIR="${pkgdir}" install
}