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