mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-04 03:17:15 +08:00
39 lines
710 B
Bash
39 lines
710 B
Bash
# Contributor: Andrea Scarpino <andrea@archlinux.org>
|
|
|
|
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' 'python')
|
|
checkdepends=("cmake")
|
|
groups=('plasma')
|
|
options=("debug")
|
|
source=("${PServer}/${pkgver}/${pkgname}-${PSubVersion}.tar.xz")
|
|
sha256sums=( $(getSum ${pkgname}) )
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake_kf5 ../${pkgname}-${pkgver}
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd build
|
|
make test
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|