contrib/fmt/Pkgfile
2020-11-02 14:35:59 +00:00

19 lines
527 B
Plaintext

# Description: An open-source formatting library
# URL: https://fmtlib.net/latest/index.html
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: cmake
name=fmt
version=7.1.1
release=1
source=(https://github.com/fmtlib/$name/archive/$version/$name-$version.tar.gz)
build() {
[[ -e /usr/bin/ninja ]] && PKGMK_FMT_OPTIONS=' -GNinja'
cmake -S$name-$version -Bbuild $PKGMK_FMT_OPTIONS \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib
cmake --build build
DESTDIR=$PKG cmake --install build
}