Ticket #33927: Portfile

File Portfile, 1.3 KB (added by fabiano@…, 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 88653 2012-01-06 22:22:38Z dports@macports.org $
3
4PortSystem 1.0
5
6name             celt
7version          0.5.1.1
8categories       audio
9maintainers      fidencio
10description      CELT - ultra-low delay audio codec
11long_description \
12    The CELT codec is a compression algorithm for audio.       \
13    Like MP3, Vorbis, and AAC it is suitable for transmitting  \
14    music with high quality. Unlike these formats CELT imposes \
15    very little delay on the signal, even less than is typical \
16    for speech centric formats like Speex, GSM, or G.729.
17homepage         http://www.celt-codec.org/
18platforms        darwin
19license                  BSD
20
21depends_lib      port:libogg
22
23master_sites     http://downloads.xiph.org/releases/celt
24checksums        rmd160 34591542bbbad379cc42e54c726902ad45c6b9d4 \
25                 sha256 505d7e2c4c4a8590d460f536df5c68702cdd0006d5aeb4aa19447150b50e545f
26
27configure.args   --mandir=${prefix}/share/man
28
29build.env        ${configure.env}
30
31destroot.destdir prefix=${destroot}${prefix}
32
33livecheck.type   regex
34livecheck.url    http://www.celt-codec.org/downloads/
35livecheck.regex  "${name}-\(\[0-9.\]*\)${extract.suffix}"