Ticket #46079: Portfile

File Portfile, 1.3 KB (added by jul_bsd@…, 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
6PortGroup           github 1.0
7
8github.setup        libyal libcsystem 20141022
9categories-append   security
10platforms           darwin
11
12maintainers         yahoo.fr:jul_bsd openmaintainer
13
14license             LGPL-3+
15
16description         Library for cross-platform C system functions
17long_description    ${description}
18
19distname            ${name}-alpha-${version}
20
21## Note: We want "release" not source code
22master_sites        https://github.com/libyal/${name}/releases/download/${version}/
23worksrcdir          ${name}-${version}
24checksums           rmd160  c068c6ec76b36ce9be52dee3058684cc2511947d \
25                    sha256  256a114f8f5c93c7b6801ca309e1582d0d5ea4e074c17928a8520034e8c369f4
26
27depends_lib         port:gettext port:libiconv port:osxfuse
28depends_build       port:pkgconfig
29
30configure.args      --with-libiconv-prefix=${prefix} \
31                    --without-libintl \
32                    --with-libcstring=${prefix} \
33                    --with-libcerror=${prefix} \
34                    --with-libclocale=${prefix} \
35                    --with-libcnotify=${prefix} \
36                    --with-libuna=${prefix} \
37
38