Ticket #36558: Portfile.3

File Portfile.3, 1.3 KB (added by okoeroo@…, 12 years ago)
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 52db3ea26b68202e17057f30934c83dcf666ed0d \
23                    sha256 d936cd1bd36ca0d5fe0f0e9401d5f3d1f2ea458bd218b6245c7b80de10661a53
24
25depends_lib         port:openssl
26
27test.run            yes
28test.target         check
29
30pre-configure {
31    system -W ${worksrcpath} "/bin/mkdir project"
32    system -W ${worksrcpath} "/bin/bash bootstrap"
33}