contrib/fmt/Pkgfile
2020-07-06 17:01:04 +00:00

17 lines
430 B
Plaintext

# Description: An open-source formatting library
# URL: http://fmtlib.net/latest/index.html
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: cmake
name=fmt
version=7.0.0
release=1
source=(https://github.com/fmtlib/$name/archive/$version/$name-$version.tar.gz)
build() {
cmake -S$name-$version -Bbuild\
-DCMAKE_INSTALL_PREFIX=/usr
cmake --build build
DESTDIR=$PKG cmake --build build --target install
}