contrib/libebml/Pkgfile

24 lines
684 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.4
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
}