如何列出某些MacPorts软件包安装的所有文件?
例如,在Funtoo(或Gentoo)中,我可以使用以下命令实现相同的目的:
equery b [package name]
如何列出某些MacPorts软件包安装的所有文件?
例如,在Funtoo(或Gentoo)中,我可以使用以下命令实现相同的目的:
equery b [package name]
Answers:
在我的情况下,CFLAGS LDFLAGS是必需的。
# ensure libyaml is installed
port install libyaml +universal
# if you like you can check the location of the installied files (especially the .h file)
# port contents libyaml
# now configure with these options
CFLAGS="-I/opt/local/include/ " LDFLAGS="-L/opt/local/lib/" ./configure
make
sudo make install
port provides filename