Ticket #38257: Portfile

File Portfile, 1.3 KB (added by cooljeanius (Eric Gallager), 12 years ago)

Portfile for osslsigncode

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                osslsigncode
7version             1.4
8categories          security devel
9platforms           darwin
10maintainers         gwmail.gwu.edu:egall openmaintainer
11license             GPL-2+
12
13description         ${name} is a small tool that implements part of the functionality \
14                    of the Microsoft tool signcode.exe
15
16long_description    ${description} - more exactly the Authenticode \
17                    signing and timestamping. But ${name} is based on OpenSSL and cURL, \
18                    and thus should be able to compile on most platforms where these exist.
19
20homepage            http://osslsigncode.sourceforge.net/
21master_sites        sourceforge
22
23checksums           md5     018b12b3efc4a5250dd3977c2bada3cd \
24                    sha1    ac63d62abddfcb37597640da96f61f496bee6086 \
25                    rmd160  58e5031f2f94b8f6bcdf90a6beacf19758d7e429 \
26                    sha256  721eddade1571fcde54e7f5c21f961dacb990c19f9bdb05c4a7aaeb269979069
27
28depends_build-append port:pkgconfig
29depends_lib-append   port:openssl
30
31variant curl description {Build with curl support} {
32    depends_lib-append port:curl
33    configure.args-append --with-curl
34}