forked from ports/contrib
19 lines
496 B
Plaintext
19 lines
496 B
Plaintext
# Description: A library for reading and writing files with the Extensible Binary Meta Language, a binary pendant to XML.
|
|
# URL: https://github.com/Matroska-Org/libebml
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Packager: Brett Goulder, predatorfreak at dcaf-security dot org.
|
|
|
|
name=libebml
|
|
version=1.3.5
|
|
release=1
|
|
source=(https://dl.matroska.org/downloads/$name/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
make prefix=$PKG/usr install
|
|
}
|