contrib/spdlog/Pkgfile

31 lines
950 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
2021-03-26 09:10:38 +01:00
version=1.8.5
release=2
source=(https://github.com/gabime/spdlog/archive/v$version/$name-$version.tar.gz
spdlog-1.8.5-fmt8.patch spdlog-1.8.5-fmt8_tests.patch)
2019-09-01 12:20:30 +02:00
build() {
patch -Np1 -d $name-$version -i $SRC/spdlog-1.8.5-fmt8.patch
patch -Np1 -d $name-$version -i $SRC/spdlog-1.8.5-fmt8_tests.patch
prt-get isinst ninja && PKGMK_SPDLOG+=' -G Ninja'
2020-11-08 14:26:08 +01:00
cmake -S $name-$version -B build $PKGMK_SPDLOG \
-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
}