forked from ports/contrib
25 lines
745 B
Plaintext
25 lines
745 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
|
|
|
|
name=libebml
|
|
version=1.4.2
|
|
release=1
|
|
source=(https://dl.matroska.org/downloads/$name/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
[[ -e /usr/bin/ninja ]] && PKGMK_LIBEBML+=' -G Ninja'
|
|
cmake -S $name-$version -B build $PKGMK_LIBEBML \
|
|
-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
|
|
}
|