33 lines
1.0 KiB
Bash
33 lines
1.0 KiB
Bash
# Template file for 'mkvtoolnix'
|
|
pkgname=mkvtoolnix
|
|
version=28.2.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 json-c++
|
|
libflac-devel libmatroska-devel libvorbis-devel pugixml-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/"
|
|
changelog="https://mkvtoolnix.download/doc/NEWS.md"
|
|
distfiles="${homepage}/sources/${pkgname}-${version}.tar.xz"
|
|
checksum=aa54b39790e619b2cfdefdd083c735503834eb05c665cd85f9b5a8383bcc5843
|
|
|
|
if [ "$CROSS_BUILD" ]; then
|
|
configure_args+=" --with-boost=${XBPS_CROSS_BASE}/usr"
|
|
hostmakedepends+=" qt5-host-tools qt5-multimedia-devel qt5-tools-devel"
|
|
fi
|
|
|
|
pre_configure() {
|
|
./autogen.sh
|
|
}
|
|
do_build() {
|
|
rake ${makejobs}
|
|
}
|
|
do_install() {
|
|
rake DESTDIR=${DESTDIR} install
|
|
}
|