如何为 Mac OS X 构建 Audacity 应用程序源代码

Posted

技术标签:

【中文标题】如何为 Mac OS X 构建 Audacity 应用程序源代码【英文标题】:How to build audacity app source code for Mac OS X 【发布时间】:2011-04-15 08:34:06 【问题描述】:

我从以下网站下载了 Audacity 源代码 http://code.google.com/p/audacity/downloads/detail?name=audacity-fullsrc-1.3.13-beta.tar.bz2&can=2&q=

我必须在 Mac OS X 10.6 和 Xcode 3.2.5 上构建我的应用程序。

我尝试按照 audacitysourceCodeFolder/mac/ 中“compile.txt”文件中的步骤进行操作

但没有成功。

谁能帮我安装这个。 因为我需要研究压缩文件的波形生成代码。

【问题讨论】:

你为什么不在 Audacity 邮件列表中询问? 我查看了 forum.audacityteam.org/viewtopic.php?f=19&t=52237 但无法得到它。 【参考方案1】:

运行:

/Users/Anne/Desktop/audacity-src-1.3.13-beta/configure 

说:

configure: error: pkg-config is required to compile audacity!

下载安装 MacPorts:

http://www.macports.org/install.php

安装 pkgconfig

sudo port install pkgconfig

再次运行:

/Users/Anne/Desktop/audacity-src-1.3.13-beta/configure 

说:

lib-widget-extra is required to build audacity. A copy is included in the audacity source distribution at lib-src/lib-widget-extra/.

构建和安装 lib-widget-extra:

cd /Users/Anne/Desktop/audacity-src-1.3.13-beta/lib-src/lib-widget-extra 
./configure
make
sudo make install

再次运行:

/Users/Anne/Desktop/audacity-src-1.3.13-beta/configure 

说:

configure: error: must have Ogg installed!

安装 libogg

sudo port install libogg

运行:

 /Users/Anne/Desktop/audacity-src-1.3.13-beta/configure --with-portmixer=no

构建:

cd /Users/Anne/Desktop/audacity-src-1.3.13-beta/
sudo make install

更多信息请查看:http://forum.audacityteam.org/ http://forum.audacityteam.org/viewtopic.php?f=19&t=55176

【讨论】:

当我执行最后一步时,cd /Users/Anne/Desktop/audacity-src-1.3.13-beta/ make ,然后我得到 make: *** No targets specified and no makefile found .停止。 像这样为configure 提供前缀:/Users/Anne/Desktop/audacity-src-1.3.13-beta/configure --with-portmixer=no prefix=/Users/Anne/Desktop/build/

以上是关于如何为 Mac OS X 构建 Audacity 应用程序源代码的主要内容,如果未能解决你的问题,请参考以下文章

如何为 Mac OS X 创建苹果邮件插件 [关闭]

如何卸载 Xcode 4.4 命令行工具(Mac OS X 10.8 Mountain Lion)?

如何为 Watch OS 2 模拟器构建 openssl 库?

如何为 OS X 应用程序符号化 PLCrashReports

如何构建本机 Mac OS X 安装程序(在非 Mac 平台上)?

如何为 NSButton 的标题设置自定义颜色和字体大小?(在 OS X 而非 iOS 中)[重复]