mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
30 lines
693 B
Bash
30 lines
693 B
Bash
#contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/kdeedu-data
|
|
# Include global configuration
|
|
source ../kdeapps.conf
|
|
|
|
pkgname=kdeedu-data
|
|
pkgver=${_kdever}
|
|
pkgrel=1
|
|
pkgdesc="Common data for KDE Edu applications"
|
|
url="https://projects.kde.org/projects/kde/kdeedu/libkdeedu"
|
|
arch=('x86_64')
|
|
license=('GPL' 'LGPL' 'FDL')
|
|
makedepends=('extra-cmake-modules')
|
|
source=("$_mirror/${pkgname}-$_kdever.tar.xz")
|
|
sha256sums=(`grep ${pkgname}-$_kdever.tar.xz ../checksums.txt | cut -d " " -f1`)
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake_kf5 ../${pkgname}-${pkgver}
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|