Ticket #18285: patch-sox.diff
File patch-sox.diff, 2.5 KB (added by dbevans (David B. Evans), 16 years ago) |
---|
-
Portfile
4 4 PortSystem 1.0 5 5 6 6 name sox 7 version 14. 0.17 version 14.2.0 8 8 categories audio 9 maintainers nomaintainer9 maintainers jmpoure 10 10 description SOund eXchange - universal sound sample translator 11 11 long_description \ 12 12 SoX (also known as Sound eXchange) translates sound samples between \ … … 17 17 homepage http://sox.sourceforge.net/ 18 18 platforms darwin 19 19 20 depends_lib port:libao port:libsndfile port:libid3tag port:libsamplerate 20 depends_lib port:libao \ 21 port:libsndfile \ 22 port:libid3tag \ 23 port:libsamplerate \ 24 port:libvorbis \ 25 port:ffmpeg \ 26 port:libmad \ 27 port:flac 21 28 22 29 master_sites sourceforge 23 checksums md5 6c95af60b20b9655531bf3162c0be937 \ 24 sha1 b4b07e9905728209d3c97b9fb0fc65e75b4c45a1 30 checksums md5 7afc0e85d14be014f08e7d3b7ee8c24e \ 31 sha1 1b60e5af43f44a51247fb978f2423f0de7e27363 \ 32 rmd160 7c76a2db5c5838fc3d9f8b5402e47d548fd094d5 25 33 26 34 configure.args --mandir=\\\${prefix}/share/man \ 27 -- without-ogg\28 -- without-mad\29 -- without-lame\30 -- without-flac\31 -- without-ffmpeg\35 --enable-lame \ 36 --enable-ogg \ 37 --enable-ffmpeg \ 38 --enable-mad \ 39 --enable-flac \ 32 40 --without-amr-wb \ 33 41 --without-amr-nb 34 42 35 43 build.env ${configure.env} 36 44 37 45 destroot.destdir prefix=${destroot}${prefix} 38 39 variant vorbis description {Enable Ogg Vorbis audio support} {40 configure.args-delete --without-ogg41 depends_lib-append port:libvorbis42 }43 44 variant mad description {Enable MAD (MPEG audio decoder) support} {45 configure.args-delete --without-mad46 depends_lib-append port:libmad47 }48 49 variant lame description {Enable LAME MP3 encoder support} {50 configure.args-delete --without-lame51 depends_lib-append port:lame52 }53 54 variant flac description {Enable FLAC audio support} {55 configure.args-delete --without-flac56 depends_lib-append port:flac57 }58 59 variant ffmpeg description {Enable ffmpeg support} {60 configure.args-delete --without-ffmpeg61 depends_lib-append port:ffmpeg62 }