Ticket #48570: Portfile

File Portfile, 1.4 KB (added by sseroshtan@…, 9 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
5
6name                virgil-cli
7version             0.3.2
8categories          crypto security
9platforms           darwin
10license             BSD 3-Clause
11maintainers         sseroshtan
12description         Command line tool for using Virgil Security stack functionality
13long_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
17homepage            https://virgilsecurity.com
18master_sites        https://github.com/VirgilSecurity/virgil-cli/archive
19
20worksrcdir          ${name}-${name}-${version}
21
22checksums           rmd160  b7974328d3a1f45179a225dabb975b56f6f5e256 \
23                    sha256  8334a45e9bba699d67f1b278277e259598de9f8b270a170b667273eb6f2de9bc
24
25depends_build       port:cmake port:python27 port:git port:openssl
26depends_lib         port:curl
27
28configure.cmd       cmake -DCMAKE_BUILD_TYPE=Release
29configure.pre_args  -DCMAKE_INSTALL_PREFIX=${prefix}
30
31post-destroot {
32    # Remove tmp files that was installed during subproject compile step.
33    delete file ${destroot}${prefix}/var
34}