mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 20:49:02 +08:00
33 lines
770 B
Bash
33 lines
770 B
Bash
# Include global configuration
|
|
source ../frameworks.conf
|
|
|
|
pkgname=purpose
|
|
pkgver=$KFVersion
|
|
pkgrel=1
|
|
pkgdesc="Framework for providing abstractions to get the developer's purposes fulfilled"
|
|
arch=('x86_64')
|
|
url='https://projects.kde.org/purpose'
|
|
license=('LGPL')
|
|
depends=(kaccounts-integration accounts-qml-module hicolor-icon-theme)
|
|
makedepends=(extra-cmake-modules intltool python3)
|
|
optdepends=('kdeconnect: sharing to smartphone via KDE Connect')
|
|
source=("${KFServer}/${pkgname}-${pkgver}.tar.xz"{,.sig})
|
|
sha256sums=( $(getSum ${pkgname})
|
|
SKIP)
|
|
validpgpkeys=( ${KFvalidpgpkeys[@]} )
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake_kf5 ../${pkgname}-${pkgver}
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|