mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
33 lines
917 B
Bash
33 lines
917 B
Bash
# Include global configuration
|
|
source ../kdeapps.conf
|
|
|
|
pkgname=kdeedu-artikulate
|
|
_pkgname=artikulate
|
|
pkgver=${_kdever}
|
|
pkgrel=1
|
|
pkgdesc="Pronounciation learning tool"
|
|
url="https://projects.kde.org/projects/kde/kdeedu/artikulate"
|
|
arch=('x86_64')
|
|
license=('GPL' 'LGPL' 'FDL')
|
|
depends=("kde-runtime" "kdeedu-libkdeedu" "kqtquickcharts" "qt-gstreamer")
|
|
makedepends=('cmake' 'automoc4' 'docbook-xsl')
|
|
groups=("kde" "kdeedu" "kde-uninstall")
|
|
categories=('education')
|
|
options=('docs' '!header' 'debug' 'log')
|
|
install=${pkgname}.install
|
|
source=("$_mirror/${_pkgname}-$_kdever.tar.xz")
|
|
sha256sums=(`grep ${_pkgname}-$_kdever.tar.xz ../checksums.txt | cut -d " " -f1`)
|
|
|
|
build() {
|
|
cd ${srcdir}/${_pkgname}-${pkgver}
|
|
cmake . \
|
|
-DCMAKE_BUILD_TYPE=${_build_type} \
|
|
-DCMAKE_INSTALL_PREFIX=${_installprefix}
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${_pkgname}-${pkgver}
|
|
make DESTDIR=${pkgdir} install
|
|
}
|