1 | # $Id: Portfile 20220 2006-10-29 06:32:52Z blair@macports.org $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | name libsndfile |
---|
5 | version 1.0.17 |
---|
6 | revision 1 |
---|
7 | categories audio |
---|
8 | maintainers sean@sfarc.net |
---|
9 | description Library for reading and writing audio files |
---|
10 | long_description libsndfile is a C library for reading and writing \ |
---|
11 | sound files such as AIFF, AU and WAV files through \ |
---|
12 | one standard interface. It can currently read/write \ |
---|
13 | 8, 16, 24 and 32-bit PCM files as well as 32-bit floating \ |
---|
14 | point WAV files and a number of compressed formats. |
---|
15 | homepage http://www.mega-nerd.com/libsndfile/ |
---|
16 | platforms darwin |
---|
17 | master_sites ${homepage} |
---|
18 | checksums md5 2d126c35448503f6dbe33934d9581f6b |
---|
19 | configure.args --mandir=${prefix}/share/man --disable-flac |
---|
20 | |
---|
21 | default_variants +flac |
---|
22 | |
---|
23 | variant flac { |
---|
24 | depends_lib port:flac |
---|
25 | configure.args-delete --disable-flac |
---|
26 | configure.args-append --enable-flac |
---|
27 | } |
---|
28 | |
---|