26 lines
602 B
Plaintext
26 lines
602 B
Plaintext
# Description: Tools to create, alter and inspect Matroska files.
|
|
# URL: https://mkvtoolnix.download/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: boost cmark docbook-xsl file flac libmatroska libvorbis ruby
|
|
# Optional: qt5 hicolor-icon-theme
|
|
|
|
name=mkvtoolnix
|
|
version=49.0.0
|
|
release=1
|
|
source=(https://mkvtoolnix.download/sources/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-precompiled-headers \
|
|
--disable-update-check
|
|
|
|
rake -j ${JOBS-1}
|
|
rake DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/locale
|
|
rm -rf $PKG/usr/share/doc
|
|
}
|