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 | PortGroup github 1.0 |
---|
6 | |
---|
7 | github.setup lastpass lastpass-cli 0.3.0 v |
---|
8 | |
---|
9 | categories security |
---|
10 | platforms darwin |
---|
11 | maintainers gmail.com:israelchauca |
---|
12 | supported_archs noarch |
---|
13 | description C99 command line interface to LastPass.com. |
---|
14 | long_description ${description} |
---|
15 | depends_lib port:curl \ |
---|
16 | port:libxml2 \ |
---|
17 | port:openssl |
---|
18 | use_configure no |
---|
19 | default_variants +pinentry |
---|
20 | |
---|
21 | checksums rmd160 69ac8ae062c79588f72eab6d88baa3c9739949da \ |
---|
22 | sha256 26de7de5e2f93bb04ab6c0c5bcc955302c985e548bf4662512f5ade96c5d5977 |
---|
23 | |
---|
24 | destroot.args PREFIX=${prefix} |
---|
25 | |
---|
26 | variant doc description {Install the documentation.} { |
---|
27 | depends_build-append port:asciidoc |
---|
28 | build.target-append doc-man |
---|
29 | destroot.target-append install-doc |
---|
30 | } |
---|
31 | |
---|
32 | variant pinenetry description {Use pinentry to enter password.} { |
---|
33 | depends_lib-append port:pinentry |
---|
34 | } |
---|