mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
47 lines
1.1 KiB
Bash
47 lines
1.1 KiB
Bash
# Maintainer: H W Tovetjärn (totte) <totte@tott.es>
|
|
# Contributors: Manuel Tortosa <manutortosa@chakra-project.org>
|
|
|
|
# Include global configuration
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname="baloo"
|
|
arch=('x86_64')
|
|
pkgver=${_kdever}
|
|
pkgrel=2
|
|
pkgdesc="The core baloo system"
|
|
url="http://www.kde.org"
|
|
license=('GPL'
|
|
'LGPL'
|
|
'FDL')
|
|
options=('docs'
|
|
'!header'
|
|
'debug'
|
|
'log')
|
|
depends=("kdelibs>=${_kdever}"
|
|
"kfilemetadata>=${pkgver}"
|
|
'kdepimlibs'
|
|
'xapian-core')
|
|
makedepends=('pkg-config'
|
|
'cmake'
|
|
'automoc4'
|
|
'doxygen')
|
|
optdepends=("nepomuk-core: To migrate nepomuk metadata to baloo")
|
|
install="baloo.install"
|
|
source=($_mirror/${pkgname}-$_kdever.tar.xz)
|
|
sha256sums=(`grep ${pkgname}-$_kdever.tar.xz ../checksums.txt | cut -d" " -f1`)
|
|
|
|
build() {
|
|
cd ${pkgname}-${pkgver}
|
|
rm -rf build
|
|
mkdir -p build && cd build
|
|
cmake .. \
|
|
-DCMAKE_BUILD_TYPE=${_build_type} \
|
|
-DCMAKE_INSTALL_PREFIX=${_installprefix}
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}/build
|
|
make DESTDIR=${pkgdir} install
|
|
}
|