contrib/mkvtoolnix/Pkgfile

43 lines
1.1 KiB
Plaintext
Raw Normal View History

2010-12-14 14:18:57 +01:00
# Description: Tools to create, alter and inspect Matroska files.
# URL: http://www.bunkus.org/videotools/mkvtoolnix
2014-11-10 13:28:07 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
2010-12-14 14:18:57 +01:00
# Packager: Han Boetes, han at mijncomputer dot nl
2010-12-15 14:11:22 +01:00
# Depends on: boost file flac libmatroska libvorbis ruby
# Nice to have: wxgtk
2008-02-13 21:09:45 +01:00
name=mkvtoolnix
2015-12-02 13:32:18 +01:00
version=8.6.1
release=1
source=(http://www.bunkus.org/videotools/mkvtoolnix/sources/$name-$version.tar.xz)
2008-02-13 21:09:45 +01:00
2010-12-14 14:18:57 +01:00
build() {
2008-02-13 21:09:45 +01:00
cd $name-$version
2010-12-14 14:18:57 +01:00
2013-11-19 12:38:30 +01:00
local JOBS=$(awk 'BEGIN{RS="-j|--jobs="} NR==2 {print $1}' <<< $MAKEFLAGS)
2015-04-22 16:02:27 +02:00
test -n "$JOBS" && export DRAKETHREADS="$JOBS"
2010-12-15 14:11:22 +01:00
2015-12-02 13:32:18 +01:00
# export CFLAGS="${CFLAGS} -DBOOST_FILESYSTEM_VERSION=3"
# export CXXFLAGS="${CXXFLAGS} -DBOOST_FILESYSTEM_VERSION=3"
2012-10-20 07:54:25 +02:00
2015-12-02 13:32:18 +01:00
# autoreconf -vfi
2011-05-21 04:25:19 +02:00
2008-02-13 21:09:45 +01:00
./configure \
--prefix=/usr \
2015-12-02 13:32:18 +01:00
--disable-precompiled-headers \
--without-curl
2010-12-14 14:18:57 +01:00
2013-07-01 04:55:15 +02:00
[ "$CXX" ] || CXX=g++
2015-04-22 16:02:27 +02:00
./drake CXX="$CXX"
./drake DESTDIR=$PKG install
2010-12-15 14:11:22 +01:00
rm -r \
2015-12-02 13:32:18 +01:00
$PKG/usr/share/man/{ca,de,es,uk,ja,nl,zh_CN} \
2012-10-20 07:54:25 +02:00
$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
2008-02-13 21:09:45 +01:00
}