contrib/fmt/Pkgfile

19 lines
415 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-04-06 15:46:02 +02:00
version=6.2.0
2019-09-01 12:20:21 +02:00
release=1
source=(https://github.com/fmtlib/$name/archive/$version/$name-$version.tar.gz)
build() {
mkdir build; cd build
cmake \
-DCMAKE_INSTALL_PREFIX=/usr \
../$name-$version
make
make DESTDIR=$PKG install
}