일부 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.