Ticket #43247: Portfile

File Portfile, 1.1 KB (added by cooljeanius (Eric Gallager), 10 years ago)

Portfile for lbzip2

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                lbzip2
7version             2.5
8categories          archivers
9platforms           darwin
10maintainers         nomaintainer
11license             GPL-3+
12
13description         ${name} - parallel bzip2 compression utility
14
15long_description    ${name} is a free, multi-threaded compression utility \
16                    with support for bzip2 compressed file format.
17
18homepage            http://${name}.org/
19master_sites        http://archive.${name}.org/
20
21checksums           rmd160  47346a01d26754ff6d3b78deebad2f6aaa2704bb \
22                    sha256  46c75ee93cc95eedc6005625442b2b8e59a2bef3ba80987d0491f055185650e9
23
24configure.args-append --enable-largefile
25
26variant debug description {Enable tracing and other options useful to developers} {
27    configure.args-append \
28                    --enable-tracing \
29                    --enable-warnings \
30                    --disable-silent-rules
31    configure.optflags -g
32}
33
34test.run            yes
35test.target         check