PKGBUILDs/subtitlecomposer/git/PKGBUILD

67 lines
1.9 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>
# 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
2015-09-03 01:54:40 +02:00
# 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).
2019-06-27 20:59:45 +02:00
_name=SubtitleComposer
pkgname=${_name,,}-git
pkgver=0.7.0
2015-09-03 01:54:40 +02:00
pkgrel=1
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')
2016-02-07 21:39:57 +01:00
url="https://github.com/maxrd2/${_name}"
2015-09-03 01:54:40 +02:00
license=('GPL')
2019-06-27 20:59:45 +02:00
depends=('kcoreaddons' 'sonnet' 'kcodecs' 'kross' 'kxmlgui' 'ki18n' 'ffmpeg')
2016-02-07 21:39:57 +01:00
makedepends=('extra-cmake-modules' 'git')
2016-03-15 13:22:24 +01:00
# Comment/uncomment the following dependencies to disable/enable
# building the plugins for MPV and Xine player backends and pocketsphinx
2016-03-15 13:22:24 +01:00
makedepends+=('xine-lib')
makedepends+=('mpv')
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'
'ruby: scripting'
'python: scripting')
conflicts=($_name)
provides=($_name)
2016-02-07 21:39:57 +01:00
source=("git+https://github.com/maxrd2/${_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/-/./;s/^v//g'
2015-09-03 01:54:40 +02:00
}
build() {
2016-02-07 21:39:57 +01:00
cd ${srcdir}/${_name}
2016-03-15 13:22:24 +01:00
cmake \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DKDE_INSTALL_LIBDIR=lib \
2016-03-15 13:22:24 +01:00
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
2019-06-27 20:59:45 +02:00
-DBUILD_TESTING=OFF \
-DAPP_VERSION="${pkgver}"
2015-12-24 16:50:30 +01:00
make
2015-09-03 01:54:40 +02:00
}
package() {
2016-02-07 21:39:57 +01:00
cd ${srcdir}/${_name}
2015-12-24 16:50:30 +01:00
make DESTDIR=${pkgdir} install
2015-09-03 01:54:40 +02:00
}