MacPortsパッケージによってインストールされたすべてのファイルのリスト


32

いくつかのMacPortsパッケージによってインストールされたすべてのファイルをリストする方法は?

たとえば、Funtoo(またはGentoo)では、次のコマンドで同じことを実現できます。

equery b [package name]

回答:


50
port contents installed_port_name

8
そして、興味がある人にとっては、逆引き(ポートがファイルを提供した)はport provides filename
-drfrogsplat

0

私の場合、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
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.