23 lines
679 B
Plaintext
23 lines
679 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: Tim Biermann, tbier at posteo dot de
|
|
|
|
name=libebml
|
|
version=1.4.5
|
|
release=1
|
|
source=(https://dl.matroska.org/downloads/$name/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cmake -S $name-$version -B build -G Ninja \
|
|
-D CMAKE_INSTALL_PREFIX=/usr \
|
|
-D CMAKE_INSTALL_LIBDIR=lib \
|
|
-D CMAKE_BUILD_TYPE=Release \
|
|
-D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \
|
|
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS" \
|
|
-D BUILD_SHARED_LIBS=ON \
|
|
-Wno-dev
|
|
|
|
cmake --build build
|
|
DESTDIR=$PKG cmake --install build
|
|
}
|