21 lines
540 B
Plaintext
21 lines
540 B
Plaintext
# Description: A library for reading and writing files with the Extensible Binary Meta Language, a binary pendant to XML.
|
|
# URL: http://www.bunkus.org/videotools/mkvtoolnix/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Packager: Brett Goulder, predatorfreak at dcaf-security dot org.
|
|
|
|
name=libebml
|
|
version=1.3.1
|
|
release=1
|
|
source=(http://www.bunkus.org/videotools/mkvtoolnix/sources/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--mandir=/usr/man
|
|
|
|
make
|
|
make prefix=$PKG/usr install
|
|
}
|