contrib/spdlog/Pkgfile

33 lines
986 B
Plaintext
Raw Normal View History

2019-09-01 12:20:30 +02:00
# Description: Fast C++ logging library
# URL: https://github.com/gabime/spdlog
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: fmt
2019-09-01 12:20:30 +02:00
name=spdlog
2023-07-14 17:03:11 +02:00
version=1.12.0
release=2
source=(https://github.com/gabime/spdlog/archive/v$version/$name-$version.tar.gz
d8d23a660601a406a1e1aa07380b5b1c5781c190.patch
spdlog_fmt_external.patch)
2019-09-01 12:20:30 +02:00
build() {
patch -Np1 -d $name-$version -i $SRC/spdlog_fmt_external.patch
patch -Np1 -d $name-$version -i $SRC/d8d23a660601a406a1e1aa07380b5b1c5781c190.patch
rm -rf $name-$version/include/spdlog/fmt/bundled
2022-01-01 19:10:55 +01:00
cmake -S $name-$version -B build -G Ninja \
2020-11-08 14:26:08 +01:00
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_INSTALL_LIBDIR=lib \
-D CMAKE_BUILD_TYPE=Release \
2020-12-07 01:04:37 +01:00
-D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \
-D SPDLOG_FMT_EXTERNAL=ON \
-D SPDLOG_INSTALL=ON \
-D SPDLOG_BUILD_SHARED=ON \
-D SPDLOG_BUILD_EXAMPLE=OFF \
-D SPDLOG_BUILD_BENCH=OFF \
2020-11-08 14:26:08 +01:00
-Wno-dev
2020-05-17 02:53:50 +02:00
cmake --build build
2020-07-08 15:01:36 +02:00
DESTDIR=$PKG cmake --install build
2019-09-01 12:20:30 +02:00
}