contrib/mkvtoolnix/Pkgfile
2015-12-02 23:32:18 +11:00

43 lines
1.1 KiB
Plaintext

# Description: Tools to create, alter and inspect Matroska files.
# URL: http://www.bunkus.org/videotools/mkvtoolnix
# Maintainer: Danny Rawlins, crux at romster dot me
# Packager: Han Boetes, han at mijncomputer dot nl
# Depends on: boost file flac libmatroska libvorbis ruby
# Nice to have: wxgtk
name=mkvtoolnix
version=8.6.1
release=1
source=(http://www.bunkus.org/videotools/mkvtoolnix/sources/$name-$version.tar.xz)
build() {
cd $name-$version
local JOBS=$(awk 'BEGIN{RS="-j|--jobs="} NR==2 {print $1}' <<< $MAKEFLAGS)
test -n "$JOBS" && export DRAKETHREADS="$JOBS"
# export CFLAGS="${CFLAGS} -DBOOST_FILESYSTEM_VERSION=3"
# export CXXFLAGS="${CXXFLAGS} -DBOOST_FILESYSTEM_VERSION=3"
# autoreconf -vfi
./configure \
--prefix=/usr \
--disable-precompiled-headers \
--without-curl
[ "$CXX" ] || CXX=g++
./drake CXX="$CXX"
./drake DESTDIR=$PKG install
rm -r \
$PKG/usr/share/man/{ca,de,es,uk,ja,nl,zh_CN} \
$PKG/usr/share/locale
# remove doc's if wxgtk is installed
rm -rf $PKG/usr/share/doc
# remove if empty
find $PKG/usr/share -depth -empty -delete
}