contrib/fmt/Pkgfile

17 lines
430 B
Plaintext
Raw Normal View History

2019-09-01 12:20:21 +02:00
# 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
2020-07-06 19:01:04 +02:00
version=7.0.0
2019-09-01 12:20:21 +02:00
release=1
source=(https://github.com/fmtlib/$name/archive/$version/$name-$version.tar.gz)
build() {
2020-05-27 00:59:40 +02:00
cmake -S$name-$version -Bbuild\
2020-05-10 20:23:52 +02:00
-DCMAKE_INSTALL_PREFIX=/usr
cmake --build build
DESTDIR=$PKG cmake --build build --target install
2019-09-01 12:20:21 +02:00
}