forked from ports/contrib
21 lines
595 B
Plaintext
21 lines
595 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
|
|
# Depends on: cmake ninja
|
|
|
|
name=libebml
|
|
version=1.4.0
|
|
release=1
|
|
source=(https://dl.matroska.org/downloads/$name/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cmake -S$name-$version -Bbuild -GNinja \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_INSTALL_LIBDIR=/usr/lib \
|
|
-DBUILD_SHARED_LIBS=ON
|
|
|
|
cmake --build build
|
|
DESTDIR=$PKG cmake --install build
|
|
}
|