diff options
author | Tim Biermann <tbier@posteo.de> | 2019-09-01 10:20:21 +0000 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2019-09-01 10:20:48 +0000 |
commit | f036b7e5a0af21c590cea639cc6a371765f0ae10 (patch) | |
tree | 0ed97abe51bceeca057a912977d540f78d24b70e /fmt | |
parent | 2c5d6ffb3a68f852b57c7bd80d3ec1f5d7c5291e (diff) | |
download | contrib-f036b7e5a0af21c590cea639cc6a371765f0ae10.tar.gz contrib-f036b7e5a0af21c590cea639cc6a371765f0ae10.tar.xz |
fmt: initial commit, version 6.0.0
Diffstat (limited to 'fmt')
-rw-r--r-- | fmt/.footprint | 25 | ||||
-rw-r--r-- | fmt/.signature | 5 | ||||
-rw-r--r-- | fmt/Pkgfile | 19 |
3 files changed, 49 insertions, 0 deletions
diff --git a/fmt/.footprint b/fmt/.footprint new file mode 100644 index 000000000..aecd9096f --- /dev/null +++ b/fmt/.footprint @@ -0,0 +1,25 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/fmt/ +-rw-r--r-- root/root usr/include/fmt/chrono.h +-rw-r--r-- root/root usr/include/fmt/color.h +-rw-r--r-- root/root usr/include/fmt/compile.h +-rw-r--r-- root/root usr/include/fmt/core.h +-rw-r--r-- root/root usr/include/fmt/format-inl.h +-rw-r--r-- root/root usr/include/fmt/format.h +-rw-r--r-- root/root usr/include/fmt/locale.h +-rw-r--r-- root/root usr/include/fmt/ostream.h +-rw-r--r-- root/root usr/include/fmt/posix.h +-rw-r--r-- root/root usr/include/fmt/printf.h +-rw-r--r-- root/root usr/include/fmt/ranges.h +-rw-r--r-- root/root usr/include/fmt/safe-duration-cast.h +drwxr-xr-x root/root usr/lib64/ +drwxr-xr-x root/root usr/lib64/cmake/ +drwxr-xr-x root/root usr/lib64/cmake/fmt/ +-rw-r--r-- root/root usr/lib64/cmake/fmt/fmt-config-version.cmake +-rw-r--r-- root/root usr/lib64/cmake/fmt/fmt-config.cmake +-rw-r--r-- root/root usr/lib64/cmake/fmt/fmt-targets-release.cmake +-rw-r--r-- root/root usr/lib64/cmake/fmt/fmt-targets.cmake +-rw-r--r-- root/root usr/lib64/libfmt.a +drwxr-xr-x root/root usr/lib64/pkgconfig/ +-rw-r--r-- root/root usr/lib64/pkgconfig/fmt.pc diff --git a/fmt/.signature b/fmt/.signature new file mode 100644 index 000000000..fdb784bb3 --- /dev/null +++ b/fmt/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF36vf+NJzQ8TUzLlvDFBP2NylCizahV9IKiLZfpmgwZ4She/bUsIgUlf05W4vXglcQh/1RjuQxmTB6IpmWR89eA0= +SHA256 (Pkgfile) = f12509bc954d3729d428211390d39c2583c6c8cdf9d1a88501af424597f61cc2 +SHA256 (.footprint) = af09c370c65a253c17887fbe8d34f82b03a4970ff9442d6723503d323a53a4e2 +SHA256 (fmt-6.0.0.tar.gz) = f1907a58d5e86e6c382e51441d92ad9e23aea63827ba47fd647eacc0d3a16c78 diff --git a/fmt/Pkgfile b/fmt/Pkgfile new file mode 100644 index 000000000..3eb2cf548 --- /dev/null +++ b/fmt/Pkgfile @@ -0,0 +1,19 @@ +# Description: An open-source formatting library +# URL: http://fmtlib.net/latest/index.html +# Maintainer: Tim Biermann, tbier at posteo dot de +# Packager: Matt Housh, jaeger at crux dot ninja +# Depends on: cmake + +name=fmt +version=6.0.0 +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 +} |