Ticket #46734: Portfile

File Portfile, 1.0 KB (added by franck@…, 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
8version             1.3.0
9
10categories          devel
11platforms           darwin
12
13description         Cross-platform asynchronous I/O.
14long_description    libUV is a multi-platform support library with a focus on \
15                    asynchronous I/O. It was primarily developed for use by \
16                    Node.js, but it's also used by Luvit, Julia, pyuv, and \
17                    others.
18
19homepage            http://www.libuv.org
20license             {MIT BSD}
21maintainers         cassedanne.com:franck
22
23github.setup        libuv libuv ${version}
24github.tag_prefix   v
25
26checksums           rmd160  b2e1dc7dd2114c242ad138ee410e6b58417d99db \
27                    sha256  a8d79332a935c9b6d1b59efcf4d4b2dd1b1c8e511964240f11e9d82331b2f49f
28
29pre-configure {
30    system "cd ${worksrcpath} && ./autogen.sh"
31}
32
33test.run            yes
34test.target         check