summaryrefslogtreecommitdiff
path: root/spdlog/Pkgfile
blob: 35b27f7ff44f579569bfbcaacac78b43bb7550b5 (plain)
    1 # Description: Fast C++ logging library
    2 # URL: https://github.com/gabime/spdlog
    3 # Maintainer: Tim Biermann, tbier at posteo dot de
    4 # Depends on: fmt
    5 
    6 name=spdlog
    7 version=1.4.0
    8 release=2
    9 source=(https://github.com/gabime/spdlog/archive/v$version/$name-$version.tar.gz)
   10 
   11 build() {
   12   cd $name-$version
   13   mkdir build
   14   cd build
   15   meson .. \
   16     --prefix=/usr \
   17     -D external_fmt=true \
   18     -D enable_examples=false \
   19     -D library_type=static
   20   ninja
   21   DESTDIR=$PKG ninja install
   22 }

Generated by cgit