spdlog: -> 1.4.0

This commit is contained in:
Tim Biermann 2019-09-21 19:51:02 +00:00
parent e9a09efcd1
commit 42af57cf79
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 14 additions and 21 deletions

View File

@ -83,10 +83,6 @@ drwxr-xr-x root/root usr/include/spdlog/sinks/
-rw-r--r-- root/root usr/include/spdlog/tweakme.h -rw-r--r-- root/root usr/include/spdlog/tweakme.h
-rw-r--r-- root/root usr/include/spdlog/version.h -rw-r--r-- root/root usr/include/spdlog/version.h
drwxr-xr-x root/root usr/lib/ drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/spdlog/ -rw-r--r-- root/root usr/lib/libspdlog.a
drwxr-xr-x root/root usr/lib/spdlog/cmake/ drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/spdlog/cmake/spdlogConfig.cmake -rw-r--r-- root/root usr/lib/pkgconfig/spdlog.pc
-rw-r--r-- root/root usr/lib/spdlog/cmake/spdlogConfigTargets-release.cmake
-rw-r--r-- root/root usr/lib/spdlog/cmake/spdlogConfigTargets.cmake
-rw-r--r-- root/root usr/lib/spdlog/cmake/spdlogConfigVersion.cmake
-rw-r--r-- root/root usr/lib/spdlog/libspdlog.a

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF39EnF0GWpTrps8YS4WONaIZIIh0udxe0WieNfw2feUAEth9eWPa2qKTEKycyjnHzV3eRZffCoehTWYsbB4XEMAM= RWSagIOpLGJF3xB+1DNa/IzyVObQ290w4pWLCmIyulLP1zH6FeB7v0N5ye1feh/QqPdRndfWURULljkfjvZzlZK1CYzcuAOGFgA=
SHA256 (Pkgfile) = 23fb1835757938039f5c8717450d27554a6ef5dc39c2fdd350ee5a2d92798855 SHA256 (Pkgfile) = 29cee9fc655b92500db02a9a6cc0e8a79152d2538bcd00e5b8c692106ed583b2
SHA256 (.footprint) = 3bd8e5938b82bd90cf33463ff0cbe91076673605fce777696587017907bdda31 SHA256 (.footprint) = f1b75d26ee6052ecb4e68654f6c9d3a969043c6f9164ef897e28cc095e19744f
SHA256 (spdlog-1.4.0.tar.gz) = afd18f62d1bc466c60bef088e6b637b0284be88c515cedc59ad4554150af6043 SHA256 (spdlog-1.4.0.tar.gz) = afd18f62d1bc466c60bef088e6b637b0284be88c515cedc59ad4554150af6043

View File

@ -5,21 +5,18 @@
name=spdlog name=spdlog
version=1.4.0 version=1.4.0
release=1 release=2
source=(https://github.com/gabime/spdlog/archive/v$version/$name-$version.tar.gz) source=(https://github.com/gabime/spdlog/archive/v$version/$name-$version.tar.gz)
build() { build() {
cd $name-$version cd $name-$version
mkdir build mkdir build
cd build cd build
cmake .. \ meson .. \
-DCMAKE_BUILD_TYPE=Release \ --prefix=/usr \
-DCMAKE_INSTALL_PREFIX=/usr \ -D external_fmt=true \
-DCMAKE_INSTALL_LIBDIR=lib \ -D enable_examples=false \
-DSPDLOG_FMT_EXTERNAL=ON \ -D library_type=static
-DSPDLOG_BUILD_EXAMPLES=OFF \ ninja
-DSPDLOG_BUILD_BENCH=OFF \ DESTDIR=$PKG ninja install
-DSPDLOG_BUILD_TESTS=OFF
make
make DESTDIR=$PKG install
} }