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

发布于 2024-11-01 11:21:03 字数 461 浏览 2 评论 0原文

我从以下位置下载了 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”文件中的步骤进行操作,

但没有成功。

任何人都可以帮我安装这个吗? 因为我需要研究压缩文件的波形生成代码。

I downloaded the audacity source code from
http://code.google.com/p/audacity/downloads/detail?name=audacity-fullsrc-1.3.13-beta.tar.bz2&can=2&q=

I have to build my app on Mac OS X 10.6 & for Xcode 3.2.5.

I tried by following the steps from 'compile.txt' file in audacitysourceCodeFolder/mac/

But no success.

Can anyone please help me out in installing this.
As I need to study the waveform generation code for a compressed file.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不弃不离 2024-11-08 11:21:03

运行:

/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

Run:

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

Says:

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

Download an install MacPorts:

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

Install pkgconfig

sudo port install pkgconfig

Run again:

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

Says:

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

Build and install lib-widget-extra:

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

Run again:

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

Says:

configure: error: must have Ogg installed!

Install libogg

sudo port install libogg

Run:

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

Build:

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

For additional information check:
http://forum.audacityteam.org/
http://forum.audacityteam.org/viewtopic.php?f=19&t=55176

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文