Ticket #36327: Portfile

File Portfile, 1.4 KB (added by anatol (Anatol Pomozov), 12 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: Portfile 93888 2012-06-03 06:01:26Z dports@macports.org $
3
4PortSystem          1.0
5
6name                vala
7version             0.18.0
8set branch          [join [lrange [split ${version} .] 0 1] .]
9categories          lang
10maintainers         nomaintainer
11description         Compiler for the GObject type system
12long_description \
13   Vala is a new programming language that aims to bring modern programming \
14   language features to GNOME developers without imposing any additional \
15   runtime requirements and without using a different ABI compared to \
16   applications and libraries written in C.
17
18platforms           darwin
19license             LGPL-2.1+
20
21homepage            http://live.gnome.org/Vala
22master_sites        gnome:sources/${name}/${branch}/
23use_xz              yes
24
25checksums           rmd160  533d24431503863f1639d7579c25dee475233d1a \
26                    sha256  18cb2220ce7352a9dd71be058530f7d4a6c8215a1d9c471430af60a04496a60b
27
28depends_build       path:bin/pkg-config:pkgconfig \
29                    port:libxslt
30
31depends_lib         path:lib/pkgconfig/glib-2.0.pc:glib2
32
33configure.args      --enable-vapigen
34
35livecheck.type      regex
36livecheck.url       http://ftp.gnome.org/pub/gnome/sources/${name}/${branch}/
37livecheck.regex     "${name}-(\\d+(?:\\.\\d+)*)${extract.suffix}"