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: Portfile 1 2012-10-10 20:28:00Z okoeroo@nikhef.nl $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name ssss |
---|
7 | version 1.0.1 |
---|
8 | revision 0 |
---|
9 | categories security |
---|
10 | platforms darwin |
---|
11 | maintainers nikhef.nl:okoeroo |
---|
12 | license Apache-2 |
---|
13 | |
---|
14 | description Shamir's Secret Sharing Service |
---|
15 | |
---|
16 | long_description Shamir's Secret Sharing is an algorithm in cryptography. It is a form of secret sharing, where a \ |
---|
17 | secret is divided into parts, giving each participant its own unique part, where some of the parts \ |
---|
18 | or all of them are needed in order to reconstruct the secret. \ |
---|
19 | Counting on all participants to combine together the secret might be impractical, and therefore \ |
---|
20 | sometimes the threshold scheme is used where any k of the parts are sufficient to reconstruct the \ |
---|
21 | original secret. |
---|
22 | |
---|
23 | homepage https://github.com/okoeroo/ssss |
---|
24 | |
---|
25 | fetch.type git |
---|
26 | git.url https://github.com/okoeroo/ssss/ |
---|
27 | git.branch 1.0.1 |
---|
28 | |
---|
29 | use_autoreconf yes |
---|
30 | |
---|
31 | depends_lib port:openssl |
---|
32 | |
---|
33 | test.run yes |
---|
34 | test.target check |
---|
35 | |
---|
36 | pre-configure { |
---|
37 | system "cd ${worksrcpath}; /bin/bash bootstrap" |
---|
38 | } |
---|