mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-26 15:32:15 +08:00
37 lines
782 B
Bash
37 lines
782 B
Bash
# Contributor : Andrea Scarpino <andrea@archlinux.org>
|
|
|
|
source ../frameworks.conf
|
|
|
|
pkgname=kcoreaddons
|
|
pkgver=${KFVersion}
|
|
pkgrel=1
|
|
pkgdesc='KCoreAddons'
|
|
arch=('i686' 'x86_64')
|
|
url='${KFServer}/kcoreaddons'
|
|
license=('LGPL')
|
|
depends=('qt5-base' 'shared-mime-info')
|
|
makedepends=('extra-cmake-modules' 'qt5-tools')
|
|
groups=('kf5')
|
|
install=kcoreaddons.install
|
|
source=("http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz")
|
|
sha256sums=( $(getSum ${pkgname}) )
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake ../${pkgname}-${pkgver} \
|
|
-DCMAKE_BUILD_TYPE=${KFBuildType} \
|
|
-DCMAKE_INSTALL_PREFIX=${KFInstallPrefix} \
|
|
-DLIB_INSTALL_DIR=lib \
|
|
-DBUILD_TESTING=OFF
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|