106 lines
4.0 KiB
Bash
106 lines
4.0 KiB
Bash
# Contributor: Mehdi Chinoune <mehdi.chinoune@hotmail.com>
|
|
|
|
_realname=qt5-speech
|
|
pkgbase="mingw-w64-${_realname}"
|
|
pkgname=("${MINGW_PACKAGE_PREFIX}-${_realname}"
|
|
"${MINGW_PACKAGE_PREFIX}-${_realname}-debug")
|
|
pkgver=5.15.17
|
|
pkgrel=1
|
|
pkgdesc="Qt module to make text to speech and speech recognition easy (mingw-w64)"
|
|
arch=('any')
|
|
mingw_arch=('mingw64' 'ucrt64' 'clang64' 'clangarm64')
|
|
url='https://www.qt.io/'
|
|
msys2_references=(
|
|
"cpe: cpe:/a:qt:qt"
|
|
)
|
|
license=('spdx:LGPL-3.0-only WITH Qt-GPL-exception-1.0 AND GPL-2.0-only AND GFDL-1.3-no-invariants-only')
|
|
makedepends=("${MINGW_PACKAGE_PREFIX}-cc"
|
|
"${MINGW_PACKAGE_PREFIX}-qt5-declarative"
|
|
"${MINGW_PACKAGE_PREFIX}-qt5-multimedia"
|
|
"rsync")
|
|
_pkgfn="${_realname/5-/}-everywhere-opensource-src-${pkgver}"
|
|
source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/$pkgver/submodules/$_pkgfn.tar.xz"
|
|
001-Reverse-list-of-voices-before-returning-from-Speech-Dispatcher.patch::https://invent.kde.org/qt/qt/qtspeech/-/commit/088b86a0.patch)
|
|
sha256sums=('f67542e76d9ecd3d2cd5f7edbdac2c09b584b7f58fe457aebae458b5b5d84659'
|
|
'2f139b910ae4b84468fba8c465ad7e67a66f805c5277c847ad3d303037731426')
|
|
|
|
prepare() {
|
|
cd ${_pkgfn/opensource-/}
|
|
patch -p1 -i "${srcdir}"/001-Reverse-list-of-voices-before-returning-from-Speech-Dispatcher.patch
|
|
}
|
|
|
|
build() {
|
|
mkdir -p build-${MSYSTEM} && cd build-${MSYSTEM}
|
|
|
|
qmake ../${_pkgfn/opensource-/}
|
|
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd build-${MSYSTEM}
|
|
make check -j1 -k
|
|
}
|
|
|
|
package_qt5-speech() {
|
|
depends=("${MINGW_PACKAGE_PREFIX}-qt5-base")
|
|
optdepends=("${MINGW_PACKAGE_PREFIX}-qt5-declarative"
|
|
"${MINGW_PACKAGE_PREFIX}-qt5-multimedia")
|
|
groups=("${MINGW_PACKAGE_PREFIX}-qt5")
|
|
|
|
cd build-${MSYSTEM}
|
|
|
|
# Fix Makefiles
|
|
local PREFIX_WIN=$(cygpath -am ${MINGW_PREFIX})
|
|
find "${srcdir}/build-${MSYSTEM}" -type f \( -name 'Makefile*' \) \
|
|
-exec sed -i -e "s|${PREFIX_WIN:0:2}\$(INSTALL_ROOT|\$(INSTALL_ROOT|g" {} \;
|
|
find "${srcdir}/build-${MSYSTEM}" -type f \( -name 'Makefile*' \) \
|
|
-exec sed -i -e "s|)${PREFIX_WIN:2}|)${MINGW_PREFIX}|g" {} \;
|
|
|
|
make INSTALL_ROOT="${pkgdir}" install
|
|
|
|
install -d "$pkgdir${MINGW_PREFIX}"/share/licenses/${_realname}
|
|
install -Dm644 $srcdir/${_pkgfn/opensource-/}/LICENSE* -t "$pkgdir${MINGW_PREFIX}"/share/licenses/${_realname}
|
|
|
|
# Seperate debug-info files
|
|
mv -f "${pkgdir}${MINGW_PREFIX}/lib"/*.debug "${pkgdir}${MINGW_PREFIX}/bin"/ || true
|
|
rsync -armR --remove-source-files --include="*/" --include="*.debug" --exclude="*" --prune-empty-dirs "${pkgdir}"/.${MINGW_PREFIX} "${srcdir}"/${MSYSTEM}-debug/
|
|
|
|
# Fix paths in *.pri, *prl and *.pc files:
|
|
# $(cygpath -m ${MINGW_PREFIX}) -> $(cygpath -m "${pkgdir}"${MINGW_PREFIX})
|
|
local PKGDIR_PREFIX_WIN=$(cygpath -m "${pkgdir}"${MINGW_PREFIX})
|
|
local FAKE_PREFIX_FOR_REPLACE="@@QT_REAL_PREFIX/dir@@"
|
|
|
|
find "${pkgdir}${MINGW_PREFIX}/share/qt5" -type f \( -name '*.pri' -o -name '*.prl' \) \
|
|
-exec sed -i -e "s|${PREFIX_WIN}|${FAKE_PREFIX_FOR_REPLACE}|g" {} \;
|
|
|
|
find "${pkgdir}${MINGW_PREFIX}/lib" -type f \( -name '*.pri' -o -name '*.prl' \) \
|
|
-exec sed -i -e "s|${PREFIX_WIN}|${FAKE_PREFIX_FOR_REPLACE}|g" {} \;
|
|
|
|
find "${pkgdir}${MINGW_PREFIX}/lib/pkgconfig" -type f -name '*.pc' \
|
|
-exec sed -i -e "s|${PREFIX_WIN}|${MINGW_PREFIX}|g" {} \;
|
|
|
|
find "${pkgdir}${MINGW_PREFIX}/lib/pkgconfig" -type f -name '*.pc' \
|
|
-exec sed -i -e "s|${PKGDIR_PREFIX_WIN}|${MINGW_PREFIX}|g" {} \;
|
|
}
|
|
|
|
package_qt5-speech-debug() {
|
|
depends=("${MINGW_PACKAGE_PREFIX}-qt5-base-debug"
|
|
"${MINGW_PACKAGE_PREFIX}-${_realname}")
|
|
groups=("${MINGW_PACKAGE_PREFIX}-qt5-debug")
|
|
options=('!strip')
|
|
|
|
cp -rf "${srcdir}"/${MSYSTEM}-debug${MINGW_PREFIX} "${pkgdir}"/
|
|
}
|
|
|
|
# template start; name=mingw-w64-splitpkg-wrappers; version=1.0;
|
|
# vim: set ft=bash :
|
|
|
|
# generate wrappers
|
|
for _name in "${pkgname[@]}"; do
|
|
_short="package_${_name#${MINGW_PACKAGE_PREFIX}-}"
|
|
_func="$(declare -f "${_short}")"
|
|
eval "${_func/#${_short}/package_${_name}}"
|
|
done
|
|
# template end;
|