# -*- coding: utf-8; mode: tcl; tab-width: 4; truncate-lines: t; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4 PortSystem 1.0 PortGroup github 1.0 name audacity version 3.7.4 categories audio license GPL-3 maintainers {makr @mohd-akram} openmaintainer set audacity_dir ${applications_dir}/Audacity.app/Contents subport ${name} { PortGroup cmake 1.1 PortGroup wxWidgets 1.0 github.setup audacity audacity ${version} Audacity- github.tarball_from releases revision 0 conflicts audacity-legacy description multi-track audio editor long_description Audacity is an easy-to-use, multi-track audio editor and \ recorder for Windows, macOS, GNU/Linux and other operating \ systems. homepage https://www.audacityteam.org checksums rmd160 ede6358561930cc397164e1b881b1f40eb195161 \ sha256 6b2cd01108e9c97c401051909bbe0e34bbc5420a88eb43de1d8deb9715eefed9 \ size 64132309 distname ${name}-sources-${version} wxWidgets.use wxWidgets-3.2 # rapidjson is header-only depends_build-append \ port:rapidjson depends_lib-append port:${wxWidgets.port} \ port:lame \ port:libvorbis \ port:flac \ port:libogg \ port:libopus \ port:opusfile \ port:libsndfile \ port:mpg123 \ port:portaudio \ port:libid3tag \ port:portmidi \ port:wavpack \ port:expat \ port:zlib depends_run port:ffmpeg7 patchfiles patch-offline-manual.diff post-patch { # truncate/disable this script which changes library paths close [open ${worksrcpath}/scripts/build/macOS/fix_bundle.py w] } configure.args -Daudacity_conan_enabled=OFF \ -Daudacity_has_vst3=OFF \ -DwxWidgets_CONFIG_EXECUTABLE=${wxWidgets.wxconfig} compiler.cxx_standard 2017 # if not present some menu items appear in another language destroot.keepdirs ${destroot}${audacity_dir}/Resources/en.lproj post-destroot { platform darwin { move ${destroot}${prefix}/Audacity.app ${destroot}${applications_dir}/ } } } subport ${name}-manual { revision 0 description The manual for audacity long_description {*}${description} github.setup audacity audacity-manual ${version} v github.tarball_from releases homepage https://manual.audacityteam.org checksums rmd160 676d40b85ad363d824f7b5c214ede7ab877cc27a \ sha256 7dabdf89b9050d67e850cde5c8aa94858151b344e0953747c6bc1697c4dec504 \ size 26569277 depends_run port:audacity use_configure no build {} installs_libs no supported_archs noarch platforms {darwin any} worksrcdir help set data_dir ${prefix}/share/audacity platform darwin { set data_dir ${audacity_dir} } destroot { xinstall -d ${destroot}${data_dir} copy ${worksrcpath} ${destroot}${data_dir} } }