Update deps of subtitlecomposer for kf5 package renaming

This commit is contained in:
Martchus 2023-10-20 11:01:41 +02:00
parent 0ff9c0527d
commit 41f247ccbc
2 changed files with 26 additions and 36 deletions

View File

@ -8,12 +8,12 @@
pkgname=subtitlecomposer
pkgver=0.7.1
pkgrel=7
pkgrel=8
pkgdesc='Video subtitle editor'
arch=('i686' 'x86_64')
url="https://invent.kde.org/multimedia/${_name}"
license=('GPL')
depends=('kcoreaddons' 'ktextwidgets' 'kio' 'sonnet' 'kcodecs' 'kross' 'kxmlgui' 'ki18n' 'ffmpeg' 'openal')
depends=('kcoreaddons5' 'ktextwidgets5' 'kio5' 'sonnet5' 'kcodecs5' 'kross' 'kxmlgui5' 'ki18n5' 'ffmpeg' 'openal')
makedepends=('extra-cmake-modules' 'jack' 'blas' 'xorg-server-xvfb')
# Comment/uncomment the following dependency to disable/enable

View File

@ -1,67 +1,57 @@
# Maintainer: Mladen Milinkovic <maxrd2@smoothware.net>
# Contributor: Martchus <martchus@gmx.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
# you also find the URL of (another) binary repository (i686 and x86_64).
# Official arch linux binaries: https://subtitlecomposer.kde.org/download.html
_name=subtitlecomposer
pkgname=${_name}-git
pkgver=0.7.0
pkgrel=1
pkgver=0.7.1+git298.fe1477b5
pkgrel=2
pkgdesc="A KDE subtitle editor (git version)"
arch=('i686' 'x86_64')
url="https://invent.kde.org/kde/${_name}"
url="https://invent.kde.org/multimedia/${_name}"
license=('GPL')
depends=('kcoreaddons' 'sonnet' 'kcodecs' 'kross' 'kxmlgui' 'ki18n' 'ffmpeg')
makedepends=('extra-cmake-modules' 'git')
depends=('kcoreaddons5' 'ktextwidgets5' 'kio5' 'sonnet5' 'kcodecs5' 'kxmlgui5' 'ki18n5' 'ffmpeg' 'openal')
makedepends=('extra-cmake-modules' 'jack' 'blas' 'xorg-server-xvfb')
# Comment/uncomment the following dependencies to disable/enable
# building the plugins for MPV and Xine player backends and pocketsphinx
makedepends+=('xine-lib')
makedepends+=('mpv')
# Comment/uncomment the following dependency to disable/enable
# building the speech recognition plugin
makedepends+=('pocketsphinx')
# For consistency, also enable/disable the corresponding optdepends
optdepends=('gstreamer: GStreamer videoplayer 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'
'python: scripting')
optdepends=('pocketsphinx: Pocketsphinx speech recognition backend')
conflicts=(${_name})
provides=(${_name})
source=("git+https://invent.kde.org/kde/${_name}.git")
# gitlab mirrors https://invent.kde.org/multimedia/subtitlecomposer.git#branch=master + i18n
source=("git+https://invent.kde.org/multimedia/${_name}.git")
sha256sums=('SKIP')
pkgver() {
cd ${srcdir}/${_name}
git describe --always --abbrev=8 | sed 's/-g/./;s/-/./;s/^v//g'
git describe --always --abbrev=8 | sed 's/-g/./;s/-/+git/;s/^v//g'
}
build() {
cd ${srcdir}/${_name}
cmake \
cmake -S "${srcdir}/${_name}" -B "${srcdir}/build" \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DKDE_INSTALL_LIBDIR=lib \
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
-DBUILD_TESTING=OFF
make
-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() {
cd ${srcdir}/${_name}
make DESTDIR=${pkgdir} install
DESTDIR="${pkgdir}" cmake --install "${srcdir}/build"
}