Ticket #46075: Portfile

File Portfile, 1.1 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 libclocale 20141014
9categories-append   security
10platforms           darwin
11
12maintainers         yahoo.fr:jul_bsd openmaintainer
13
14license             LGPL-3+
15
16description         Library for cross-platform C locale 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  20f94e75daa57e2291b09dee29a439436dd6ace3 \
25                    sha256  879111ce6dc77c865bb9d5f30373e22f47e1ab293dc590be8a072f471f42a16b
26
27depends_lib         port:gettext port:libiconv
28depends_build       port:pkgconfig
29
30configure.args      --with-libiconv-prefix=${prefix} \
31                    --with-libcstring=${prefix} \
32                    --with-libcerror=${prefix} 
33
34