English 中文(简体)
应用程序(OSX、图像Magick、TWAIN - SANE)使用的重新配置工具
原标题:Redistributing Tools used by application (OSX, imageMagick, TWAIN - SANE)

我有一个 Mac 应用程序, 使用twain( 3个软件包上的 Relies on 3 packs, 我不得不安装: libusb, sane 后端和 twain sane 接口) 和图像映像, 我也用这个软件包来安装, 我不太确定如何重新分配它们 。

我想,我必须包括我所依赖的每个包件的来源,libusb-1.0.9.tar.bz2,例如libusb包件,然后配置和制造每个/use/local/bin(从看到二进制包件完成这一点出发)中的每个包件。 我想,一旦完成,我就必须把这些地点加到 $PATH 上。

我正自己尝试这个方法,但遇到了一个错误:“配置:错误:在 $PATH 中找不到可接受的 C 编译器 ”, 所以现在正在下载 xcode 开发工具。 我想象我的安装器的终端用户也会遇到这个问题, 即使他们没有安装, 所以我现在不知道如何继续。

有人能说明如何正确分配您的应用程序所依赖的工具吗? 我使用文件Storm Pro, 并计划使用苹果标本的 shell 命令来完成命令行的工作。

最佳回答

除非您计划将您的应用程序作为源发布, 否则您绝对不想将其依赖性作为源发布。 大多数 Mac 用户没有 Xcode 开发工具, 也不想要这些工具 。

在您的机器上构建二进制( 最好是在一台清洁的机器上构建您想要支持的最古老的 OS X 版本, 该OS 的最新版本的 Xcode, 也没有安装其它东西 ) 。 然后将由此产生的二进制复制到您的. apb捆绑中 。 然后, 而不是以依赖 $PATH 的方式运行工具, 而是使用与 argv [0] 或 [NSBundle mainBundle] 相关的明确路径来启动工具 。

(并确保检查您正在使用的每一个第三方工具的许可证 。 )

问题回答

暂无回答




相关问题
2 mysql instances in MAC

i recently switched to mac. first and foremost i installed xampp. then for django-python-mysql connectivity, i "somehow" ended up installing a seperate MySQL. now the seperate mysql installation is ...

Iterating over string/strlen with umlauted characters

This is a follow-up to my previous question . I succeeded in implementing the algorithm for checking umlauted characters. The next problem comes from iterating over all characters in a string. I do ...

Controlling OSX windows

I m trying to control windows of a foreign OSX applications from my application. I d like to 1. move the windows on the screen 2. resize the windows on the screen 3. change the currently active window ...

Switching J2SE versions on Mac OS (SnowLeopard)

My current JDK on Mac OS (10.6) is set to 1.6 and I d like to switch to 1.5. A listing of /System/Library/Frameworks/JavaVM.framework/Versions/ shows: lrwxr-xr-x 1 root wheel 10 Nov 3 18:34 ...

Scrolling inside Vim in Mac s Terminal

I ve been googling around trying to figure out if it s possible to use my mouse wheel to scroll while inside Vim in Mac s Terminal, with no luck. It seems as if only X11 or iTerm support this. Before ...

export to MP3 from quicktime API

A question for Apple,QT programmers. Would like to know if it s possible to export a Movie object to MP3 using the QuickTime API. Preferably the ConvertMovieToFile function. I ve looked at ...

热门标签