PKGBUILDs/subtitlecomposer/git/PKGBUILD

58 lines
1.7 KiB
Bash
Raw Normal View History

# Maintainer: Mladen Milinkovic <maxrd2@smoothware.net>
2016-02-07 22:10:18 +01:00
# Contributor: Martchus <martchus@gmx.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
_name=subtitlecomposer
pkgname=${_name}-git
pkgver=0.7.1+git298.fe1477b5
pkgrel=2
2019-06-27 20:59:45 +02:00
pkgdesc="A KDE subtitle editor (git version)"
2015-09-03 01:54:40 +02:00
arch=('i686' 'x86_64')
url="https://invent.kde.org/multimedia/${_name}"
2015-09-03 01:54:40 +02:00
license=('GPL')
depends=('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 speech recognition plugin
makedepends+=('pocketsphinx')
# For consistency, also enable/disable the corresponding optdepends
optdepends=('pocketsphinx: Pocketsphinx speech recognition backend')
conflicts=(${_name})
provides=(${_name})
# gitlab mirrors https://invent.kde.org/multimedia/subtitlecomposer.git#branch=master + i18n
source=("git+https://invent.kde.org/multimedia/${_name}.git")
2016-03-15 13:22:24 +01:00
sha256sums=('SKIP')
2015-09-03 01:54:40 +02:00
pkgver() {
2019-06-27 20:59:45 +02:00
cd ${srcdir}/${_name}
git describe --always --abbrev=8 | sed 's/-g/./;s/-/+git/;s/^v//g'
2015-09-03 01:54:40 +02:00
}
build() {
cmake -S "${srcdir}/${_name}" -B "${srcdir}/build" \
2016-03-15 13:22:24 +01:00
-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
2015-09-03 01:54:40 +02:00
}
package() {
DESTDIR="${pkgdir}" cmake --install "${srcdir}/build"
2015-09-03 01:54:40 +02:00
}