Ticket #36558: Portfile

File Portfile, 1.4 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: Portfile 1 2012-10-10 20:28:00Z okoeroo@nikhef.nl $
3
4PortSystem          1.0
5
6name                ssss
7version             1.0.1
8revision            0
9categories          security
10platforms           darwin
11maintainers         nikhef.nl:okoeroo
12license             Apache-2
13
14description         Shamir's Secret Sharing Service
15
16long_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
23homepage            https://github.com/okoeroo/ssss
24
25fetch.type          git
26git.url             https://github.com/okoeroo/ssss/
27git.branch          1.0.1
28
29use_autoreconf      yes
30
31depends_lib         port:openssl
32
33test.run            yes
34test.target         check
35
36pre-configure {
37    system "cd ${worksrcpath}; /bin/bash bootstrap"
38}