Update subtitlecomposer to 0.7.0

This commit is contained in:
Mladen Milinkovic 2019-06-27 20:59:45 +02:00
parent a10eb6b27d
commit 429a43fc6b
2 changed files with 32 additions and 27 deletions

View File

@ -11,53 +11,57 @@
# 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).
pkgname=subtitlecomposer
pkgver=0.6.6
pkgrel=6
_name=SubtitleComposer
pkgname=${_name,,}
pkgver=0.7.0
pkgrel=1
pkgdesc="A KDE subtitle editor"
arch=('i686' 'x86_64')
url="https://github.com/maxrd2/${pkgname}"
url="https://github.com/maxrd2/${_name}"
license=('GPL')
depends=('kcoreaddons' 'sonnet' 'kcodecs' 'kross' 'kxmlgui' 'ki18n' 'gstreamer')
depends=('kcoreaddons' 'sonnet' 'kcodecs' 'kross' 'kxmlgui' 'ki18n' 'ffmpeg')
makedepends=('extra-cmake-modules')
# Comment/uncomment the following dependencies to disable/enable
# building the plugins for MPV and Xine player backends and pocketsphinx
makedepends+=('xine-lib')
makedepends+=('mpv')
#makedepends+=('pocketsphinx')
makedepends+=('pocketsphinx')
# For consistency, also enable/disable the corresponding optdepends
optdepends=('mplayer: MPlayer backend'
'mpv: MPV backend'
'xine-lib: Xine backend'
# 'pocketsphinx: speech recognition'
'kross-interpreters: for ruby and python scripting support'
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')
source=("https://github.com/maxrd2/${pkgname}/archive/v${pkgver}.tar.gz"
'0001-Use-target_link_libraries-instead-of-qt5_use_modules.patch::https://github.com/Martchus/subtitlecomposer/commit/cca0ff13c5bab516c073f9457277bdbf5fe1fd9a.patch')
sha256sums=('8c957db7078676636f05e798219ff1052a52014ce7593dc660c345196f803ae4'
sha256sums=('90dee806df0ee57f4098d417f62014b4533dbf5598d5535c9da1066536c1ed41'
'8952257e4798ba009e721a1a8b5f929b03de8e733dbfa201b20fd8edd83cea99')
prepare() {
cd ${srcdir}/${pkgname}-${pkgver}
patch -p1 -i "$srcdir/0001-Use-target_link_libraries-instead-of-qt5_use_modules.patch"
}
#prepare() {
# cd ${srcdir}/${_name}-${pkgver}
# patch -p1 -i "$srcdir/0001-Use-target_link_libraries-instead-of-qt5_use_modules.patch"
#}
build() {
cd ${srcdir}/${pkgname}-${pkgver}
cd ${srcdir}/${_name}-${pkgver}
cmake \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DKDE_INSTALL_LIBDIR=lib \
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
-DBUILD_TESTING=OFF
-DBUILD_TESTING=OFF \
-DAPP_VERSION="${pkgver}"
make
}
package() {
cd ${srcdir}/${pkgname}-${pkgver}
cd ${srcdir}/${_name}-${pkgver}
make DESTDIR=${pkgdir} install
}

View File

@ -11,15 +11,15 @@
# 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).
_name=subtitlecomposer
pkgname=${_name}-git
pkgver=0.6.6
_name=SubtitleComposer
pkgname=${_name,,}-git
pkgver=0.7.0
pkgrel=1
pkgdesc="A KDE subtitle editor"
pkgdesc="A KDE subtitle editor (git version)"
arch=('i686' 'x86_64')
url="https://github.com/maxrd2/${_name}"
license=('GPL')
depends=('kcoreaddons' 'sonnet' 'kcodecs' 'kross' 'kxmlgui' 'ki18n' 'gstreamer')
depends=('kcoreaddons' 'sonnet' 'kcodecs' 'kross' 'kxmlgui' 'ki18n' 'ffmpeg')
makedepends=('extra-cmake-modules' 'git')
# Comment/uncomment the following dependencies to disable/enable
@ -44,8 +44,8 @@ source=("git+https://github.com/maxrd2/${_name}.git")
sha256sums=('SKIP')
pkgver() {
cd "${srcdir}/${_name}"
echo "$(git rev-list --count HEAD).$(git rev-parse --short HEAD)"
cd ${srcdir}/${_name}
git describe --always --abbrev=8 | sed 's/-g/./;s/-/./;s/^v//g'
}
build() {
@ -55,7 +55,8 @@ build() {
-DCMAKE_INSTALL_PREFIX=/usr \
-DKDE_INSTALL_LIBDIR=lib \
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
-DBUILD_TESTING=OFF
-DBUILD_TESTING=OFF \
-DAPP_VERSION="${pkgver}"
make
}