PKGBUILDs/subtitlecomposer/default/PKGBUILD

65 lines
2.1 KiB
Bash

# Maintainer: Martchus <martchus@gmx.net>
# Contributor: Mladen Milinkovic <maxrd2@smoothware.net>
# All my PKGBUILDs are managed at https://github.com/Martchus/PKGBUILDs where
# you also find the URL of (another) binary repository (i686 and x86_64).
# Official arch linux binaries: https://subtitlecomposer.kde.org/download.html
pkgname=subtitlecomposer
pkgver=0.8.0
pkgrel=3
pkgdesc='Video subtitle editor'
arch=('i686' 'x86_64')
url="https://invent.kde.org/multimedia/${pkgname}"
license=('GPL')
depends=('qt5-declarative' 'kcoreaddons5' 'ktextwidgets5' 'kio5' 'sonnet5' 'kcodecs5' 'kxmlgui5' 'ki18n5' 'ffmpeg' 'openal')
makedepends=('extra-cmake-modules' 'jack' 'blas' 'xorg-server-xvfb')
# Comment/uncomment the following dependency to disable/enable
# building the pocketsphinx plugin
# Currently commented-out by default as the library is not even detected as of the 5.0.0 release:
# ```
# -- Could NOT find PocketSphinx (missing: POCKETSPHINX_INCLUDE_DIR) (found suitable version "5.0.0", minimum required is "5")
# -- Have NOT Found PocketSphinx - Speech plugin will not be built
# ```
#makedepends+=('pocketsphinx')
# For consistency, also enable/disable the corresponding optdepends
# 'pocketsphinx: Pocketsphinx speech recognition backend'
optdepends=(
'ruby: scripting'
'python: scripting'
)
_tar=${pkgname}-${pkgver}
source=("https://download.kde.org/stable/${pkgname}/${_tar}.tar.xz"
"https://download.kde.org/stable/${pkgname}/${_tar}.tar.xz.sig")
sha256sums=('b1416bdf7223b1979a36620b913c117c1b6c933bf165e28491af476310d7c9f8'
'SKIP')
validpgpkeys=('76F79007A54A4B68F1547928E2418746EF9D9B26')
prepare() {
cd "${srcdir}/${_tar}"
}
build() {
cmake -S "${srcdir}/${_tar}" -B "${srcdir}/build" \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DKDE_INSTALL_LIBDIR=lib \
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
cmake --build "${srcdir}/build"
}
check() {
export DISPLAY=:99
Xvfb :99 >& /dev/null &
trap "kill $! || true" EXIT
cmake --build "${srcdir}/build" --target test
}
package() {
DESTDIR="${pkgdir}" cmake --install "${srcdir}/build"
}