7f1c8ba865
Add main/qt5-qtspeech, required dependency for kde/kpimtextedit. Disable check in kde/kimap, as it fails at least with QEMU aarch64. Change the source url for Sink and Kube to the KDE Download mirror rather than their GitHub organization (they required rebuilding anyway due to the applications upgrade).
31 lines
851 B
Text
31 lines
851 B
Text
# Contributor: Bart Ribbers <bribbers@disroot.org>
|
|
# Maintainer:
|
|
pkgname=qt5-qtspeech
|
|
pkgver=5.12.0
|
|
pkgrel=0
|
|
pkgdesc="Qt module to make text to speech and speech recognition easy"
|
|
url="https://qt.io"
|
|
arch="all"
|
|
license="GPL-3.0 LGPL-3.0"
|
|
depends="qt5-qtmultimedia"
|
|
makedepends="qt5-qtbase-dev"
|
|
source="$pkgname-$pkgver.tar.xz::https://download.qt.io/official_releases/qt/${pkgver%.*}/$pkgver/submodules/${pkgname/qt5-/}-everywhere-src-$pkgver.tar.xz"
|
|
subpackages="$pkgname-dev"
|
|
builddir="$srcdir/${pkgname/qt5-/}-everywhere-src-$pkgver"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
qmake-qt5
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
INSTALL_ROOT="$pkgdir" make install
|
|
}
|
|
|
|
sha512sums="cbc34d2d51ef2cf333dccd0a142198a477187786e743f6322370a197b4bbcba11ef7ce92aa9ea0917cc092f51609e71764ee3e5d356dadd54eaae5783c756887 qt5-qtspeech-5.12.0.tar.xz"
|