desktop/milou/PKGBUILD

39 lines
710 B
Bash
Raw Normal View History

2014-06-22 22:02:46 +08:00
# Contributor: Andrea Scarpino <andrea@archlinux.org>
source ../plasma.conf
pkgname=milou
pkgver=${PVersion}
pkgrel=1
2014-12-01 13:27:04 +08:00
pkgdesc="A dedicated search application built on top of Baloo"
2014-10-23 03:29:25 +08:00
arch=('x86_64')
2014-12-01 13:27:04 +08:00
url='https://projects.kde.org/projects/kde/workspace/milou/'
2014-06-22 22:02:46 +08:00
license=('LGPL')
2014-12-01 13:27:04 +08:00
depends=('krunner')
makedepends=('extra-cmake-modules' 'kdoctools' 'python')
2014-06-22 22:02:46 +08:00
checkdepends=("cmake")
groups=('plasma')
options=("debug")
2014-10-23 03:29:25 +08:00
source=("${PServer}/${pkgver}/${pkgname}-${PSubVersion}.tar.xz")
sha256sums=( $(getSum ${pkgname}) )
2014-06-22 22:02:46 +08:00
prepare() {
mkdir -p build
}
build() {
cd build
2014-12-01 13:27:04 +08:00
cmake_kf5 ../${pkgname}-${pkgver}
2014-06-22 22:02:46 +08:00
make
}
check() {
cd build
make test
}
package() {
cd build
make DESTDIR="${pkgdir}" install
}