Ticket #36558: Portfile.2

File Portfile.2, 1.3 KB (added by ryandesign (Ryan Carsten Schmidt), 12 years ago)

revised portfile proposal

Line 
1# -*- 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
2# $Id$
3
4PortSystem          1.0
5PortGroup           github 1.0
6
7github.setup        okoeroo ssss 1.0.1
8categories          security
9platforms           darwin
10maintainers         nikhef.nl:okoeroo
11license             Apache-2
12
13description         Shamir's Secret Sharing Service
14
15long_description    Shamir's Secret Sharing is an algorithm in cryptography. It is a form of secret sharing, where a \
16                    secret is divided into parts, giving each participant its own unique part, where some of the parts \
17                    or all of them are needed in order to reconstruct the secret. \
18                    Counting on all participants to combine together the secret might be impractical, and therefore \
19                    sometimes the threshold scheme is used where any k of the parts are sufficient to reconstruct the \
20                    original secret.
21
22checksums           rmd160  432c61abc826709ac54b0d5a4d9a42ec7cfc50a5 \
23                    sha256  bc3268882ee8f9a4887933542dbe0023eefc738d13b9562a14a9d3391f60233f
24
25use_autoreconf      yes
26
27depends_lib         port:openssl
28
29test.run            yes
30test.target         check
31
32pre-configure {
33    system -W ${worksrcpath} "/bin/bash bootstrap"
34}