28 lines
930 B
Bash
28 lines
930 B
Bash
# Template file for 'mkvtoolnix'
|
|
pkgname=mkvtoolnix
|
|
version=11.0.0
|
|
revision=2
|
|
build_style=gnu-configure
|
|
configure_args="--without-curl --with-docbook-xsl-root=/usr/share/xsl/docbook --enable-qt"
|
|
hostmakedepends="autoconf pkg-config ruby libxslt docbook-xsl"
|
|
makedepends="libebml-devel libmatroska-devel boost-devel libvorbis-devel
|
|
libflac-devel file-devel qt5-devel qt5-tools-devel qt5-multimedia-devel"
|
|
short_desc="Create, alter and inspect Matroska videos"
|
|
maintainer="Jürgen Buchmüller <pullmoll@t-online.de>"
|
|
license="GPL-2"
|
|
homepage="https://www.bunkus.org/videotools/mkvtoolnix/"
|
|
distfiles="${homepage}/sources/${pkgname}-${version}.tar.xz"
|
|
checksum=bb642e1eb2c402c4f93a962f41a1832c99ee5b782f1596dc20f996e9a4aa426d
|
|
# Cross compiling fails due to dependency chain eigen -> jack -> pulseaudio
|
|
nocross=yes
|
|
|
|
pre_configure() {
|
|
./autogen.sh
|
|
}
|
|
do_build() {
|
|
rake ${makejobs}
|
|
}
|
|
do_install() {
|
|
rake DESTDIR=${DESTDIR} install
|
|
}
|