Remove kross-interpreters from subtitlecomposer dependencies

This package has been removed.
This commit is contained in:
Martchus 2021-12-23 01:40:08 +01:00
parent 2667e08a04
commit 3864574337
1 changed files with 26 additions and 32 deletions

View File

@ -1,59 +1,53 @@
# Maintainer: Martchus <martchus@gmx.net> # Maintainer: Martchus <martchus@gmx.net>
# Contributor: Mladen Milinkovic <maxrd2@smoothware.net> # Contributor: Mladen Milinkovic <maxrd2@smoothware.net>
# You can install/update Subtitle Composer from repository
# if you add following to /etc/pacman.conf (x86_64 only)
# [subtitlecomposer]
# # Subtitle Composer
# SigLevel = PackageRequired
# Server = http://smoothware.net/$repo/$arch
# All my PKGBUILDs are managed at https://github.com/Martchus/PKGBUILDs where # 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). # 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 pkgname=subtitlecomposer
pkgver=0.7.1 pkgver=0.7.1
pkgrel=1 pkgrel=3
pkgdesc='Video subtitle editor' pkgdesc='Video subtitle editor'
arch=('i686' 'x86_64') arch=('i686' 'x86_64')
url="https://invent.kde.org/kde/${pkgname}" url="https://invent.kde.org/multimedia/${_name}"
license=('GPL') license=('GPL')
depends=('kcoreaddons' 'sonnet' 'kcodecs' 'kross' 'kxmlgui' 'ki18n' 'ffmpeg') depends=('kcoreaddons' 'ktextwidgets' 'kio' 'sonnet' 'kcodecs' 'kross' 'kxmlgui' 'ki18n' 'ffmpeg' 'openal')
makedepends=('extra-cmake-modules') makedepends=('extra-cmake-modules' 'jack' 'blas' 'xorg-server-xvfb')
# Comment/uncomment the following dependencies to disable/enable # Comment/uncomment the following dependency to disable/enable
# building the plugins for MPV and Xine player backends and pocketsphinx # building the pocketsphinx plugin
makedepends+=('xine-lib')
makedepends+=('mpv')
makedepends+=('pocketsphinx') makedepends+=('pocketsphinx')
# For consistency, also enable/disable the corresponding optdepends # For consistency, also enable/disable the corresponding optdepends
optdepends=('gstreamer: GStreamer videoplayer backend' optdepends=('pocketsphinx: Pocketsphinx speech recognition backend'
'mpv: MPV videoplayer backend'
'mplayer: MPlayer videoplayer backend'
'phonon-qt5: Phonon videoplayer backend'
'xine-lib: Xine videoplayer backend'
'pocketsphinx: Pocketsphinx speech recognition backend'
'kross-interpreters: Ruby and Python scripting support'
'ruby: scripting' 'ruby: scripting'
'python: scripting') 'python: scripting')
source=("https://invent.kde.org/kde/${pkgname}/-/archive/v${pkgver}/${pkgname}-v${pkgver}.tar.bz2") _tar=${pkgname}-${pkgver}
sha256sums=('d7834346525813c3d5762c45fdbea2ef49c2db7d07af86b779b376e04c982e88') source=("https://download.kde.org/stable/${pkgname}/${_tar}.tar.xz"
"https://download.kde.org/stable/${pkgname}/${_tar}.tar.xz.sig")
sha256sums=('ef9cb3c0c1fe1f40cf9d8e795859b9b28adf2da3be77a076d46bc28df4cd0255'
'SKIP')
validpgpkeys=('76F79007A54A4B68F1547928E2418746EF9D9B26')
build() { build() {
cd "${srcdir}/${pkgname}-v${pkgver}" cmake -S "${srcdir}/${_tar}" -B "${srcdir}/build" \
cmake \
-DCMAKE_BUILD_TYPE=Release \ -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_PREFIX=/usr \
-DKDE_INSTALL_LIBDIR=lib \ -DKDE_INSTALL_LIBDIR=lib \
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \ -DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-DBUILD_TESTING=OFF \ cmake --build "${srcdir}/build"
-DAPP_VERSION="${pkgver}" }
make
check() {
export DISPLAY=:99
Xvfb :99 >& /dev/null &
trap "kill $! || true" EXIT
cmake --build "${srcdir}/build" --target test
} }
package() { package() {
cd "${srcdir}/${pkgname}-v${pkgver}" DESTDIR="${pkgdir}" cmake --install "${srcdir}/build"
make DESTDIR="${pkgdir}" install
} }