Estoy instalando una biblioteca C ++ usando la aplicación Installer (es un archivo .mpkg) La instalación es exitosa, pero no puedo encontrar la ubicación de la biblioteca para establecer una variable ambiental. Revisé el archivo /private/var/log/install.log, pero la carpeta de destino no aparece en la lista. ¿Hay otro registro que pueda verificar o alguna forma de determinar el destino de la instalación a través del archivo .mpkg? Muchas gracias por tu tiempo, Adán
Respuestas
¿Demasiados anuncios?
Nate
Puntos
220
Fuzzy Purple Monkey
Puntos
702
$ cd ~/Desktop/InsomniaT.mpkg/Contents/Resources/Kernel\ Module.pkg/Contents/
$ ls
Archive.bom Archive.pax.gz Info.plist PkgInfo Resources
$ lsbom Archive.bom
. 41775 0/80
./System 40755 0/0
./System/Library 40755 0/0
./System/Library/Extensions 40755 0/0
./System/Library/Extensions/InsomniaT.kext 40755 0/0
./System/Library/Extensions/InsomniaT.kext/Contents 40755 0/0
./System/Library/Extensions/InsomniaT.kext/Contents/Info.plist 100644 0/0 1900 1578584638
./System/Library/Extensions/InsomniaT.kext/Contents/MacOS 40755 0/0
./System/Library/Extensions/InsomniaT.kext/Contents/MacOS/InsomniaT 100644 0/0 107860 966116348
$ gzip -cd Archive.pax.gz | pax | more
.
./System
./System/Library
./System/Library/Extensions
./System/Library/Extensions/InsomniaT.kext
./System/Library/Extensions/InsomniaT.kext/Contents
./System/Library/Extensions/InsomniaT.kext/Contents/Info.plist
./System/Library/Extensions/InsomniaT.kext/Contents/MacOS
./System/Library/Extensions/InsomniaT.kext/Contents/MacOS/InsomniaT
$
Madhur Ahuja
Puntos
190