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 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name virgil-cli |
---|
7 | version 0.3.2 |
---|
8 | categories crypto security |
---|
9 | platforms darwin |
---|
10 | license BSD 3-Clause |
---|
11 | maintainers sseroshtan |
---|
12 | description Command line tool for using Virgil Security stack functionality |
---|
13 | long_description The virgil program is a command line tool for using Virgil Security stack functionality. \ |
---|
14 | It can be used to encrypt, decrypt, sign and verify data. \ |
---|
15 | Functionality also includes interaction with Virgil Public Keys Service. |
---|
16 | |
---|
17 | homepage https://virgilsecurity.com |
---|
18 | master_sites https://github.com/VirgilSecurity/virgil-cli/archive |
---|
19 | |
---|
20 | worksrcdir ${name}-${name}-${version} |
---|
21 | |
---|
22 | checksums rmd160 b7974328d3a1f45179a225dabb975b56f6f5e256 \ |
---|
23 | sha256 8334a45e9bba699d67f1b278277e259598de9f8b270a170b667273eb6f2de9bc |
---|
24 | |
---|
25 | depends_build port:cmake port:python27 port:git port:openssl |
---|
26 | depends_lib port:curl |
---|
27 | |
---|
28 | configure.cmd cmake -DCMAKE_BUILD_TYPE=Release |
---|
29 | configure.pre_args -DCMAKE_INSTALL_PREFIX=${prefix} |
---|
30 | |
---|
31 | post-destroot { |
---|
32 | # Remove tmp files that was installed during subproject compile step. |
---|
33 | delete file ${destroot}${prefix}/var |
---|
34 | } |
---|