41 lines
1.0 KiB
Plaintext
41 lines
1.0 KiB
Plaintext
# Description: Tools to create, alter and inspect Matroska files.
|
|
# URL: http://www.bunkus.org/videotools/mkvtoolnix
|
|
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
|
|
# Packager: Han Boetes, han at mijncomputer dot nl
|
|
# Depends on: boost file flac libmatroska libvorbis ruby
|
|
# Nice to have: wxgtk
|
|
|
|
name=mkvtoolnix
|
|
version=6.0.0
|
|
release=1
|
|
source=(http://www.bunkus.org/videotools/mkvtoolnix/sources/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
local JOBS="$(sed -e 's/.*\(\-j[ 0-9]\+\) .*/\1/' <<< $MAKEFLAGS)"
|
|
|
|
# Disable automagic curl dep used for online update checking
|
|
sed -i -e '/curl/d' configure.in
|
|
export CURL_CFLAGS="" CURL_LIBS=""
|
|
|
|
export CFLAGS="${CFLAGS} -DBOOST_FILESYSTEM_VERSION=3"
|
|
export CXXFLAGS="${CXXFLAGS} -DBOOST_FILESYSTEM_VERSION=3"
|
|
|
|
autoreconf
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--mandir=/usr/man \
|
|
--disable-precompiled-headers
|
|
|
|
./drake $JOBS
|
|
./drake $JOBS DESTDIR=$PKG install
|
|
|
|
rm -r \
|
|
$PKG/usr/man/{uk,ja,nl,zh_CN} \
|
|
$PKG/usr/share/locale
|
|
|
|
rmdir $PKG/usr/share
|
|
}
|