Files

50 lines
2.0 KiB
Tcl
Raw Permalink Normal View History

2020-12-10 13:46:19 -05:00
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
PortSystem 1.0
PortGroup golang 1.0
2024-03-07 12:41:37 -05:00
go.setup github.com/cloudflare/cfssl 1.6.5 v
2020-12-10 13:46:19 -05:00
revision 0
homepage https://cfssl.org
description Cloudflare's PKI and TLS toolkit
long_description CFSSL is CloudFlare's PKI/TLS swiss army knife. It is \
both a command line tool and an HTTP API server for \
signing, verifying, and bundling TLS certificates. \
CFSSL consists of: a set of packages useful for \
building custom TLS PKI tools, the cfssl program - the \
canonical command line utility using the CFSSL \
packages, the multirootca program - a certificate \
authority server that can use multiple signing keys, \
the mkbundle program - used to build certificate pool \
bundles, the cfssljson program - which takes the JSON \
output from the cfssl and multirootca programs and writes \
certificates, keys, CSRs, and bundles to disk.
categories security
2021-09-05 10:57:52 -04:00
installs_libs no
2020-12-10 13:46:19 -05:00
license BSD
maintainers {gmail.com:herby.gillot @herbygillot} \
openmaintainer
2021-09-05 10:57:52 -04:00
# Dependencies are already vendored in source, go.vendors not needed
2024-03-07 12:41:37 -05:00
checksums rmd160 ab96c118b17efcc8d5d6d9a255d0530d8298a45c \
sha256 b682452402f403b6ee668bb042bd9b753fe48df84fa7a18a1c32606ffd4918af \
size 8164981
2020-12-10 13:46:19 -05:00
2021-09-05 10:57:52 -04:00
build.cmd make
build.pre_args VERSION=${version}
build.args all
2020-12-10 13:46:19 -05:00
destroot {
2021-09-05 10:57:52 -04:00
foreach cfssl_bin [glob ${worksrcpath}/bin/*] {
2022-08-28 21:02:17 -04:00
xinstall -m 0755 ${cfssl_bin} ${destroot}${prefix}/bin/
2020-12-10 13:46:19 -05:00
}
2021-09-05 10:57:52 -04:00
# Build process builds rice which is used as part of the build process,
# but rice is not part of cfssl.
file delete ${destroot}${prefix}/bin/rice
2020-12-10 13:46:19 -05:00
}