https://github.com/uefi-code/fuckingpkg
Install Mac App without click its pkg
https://github.com/uefi-code/fuckingpkg
macos-app
Last synced: 7 months ago
JSON representation
Install Mac App without click its pkg
- Host: GitHub
- URL: https://github.com/uefi-code/fuckingpkg
- Owner: UEFI-code
- Created: 2025-07-19T05:42:13.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-07-19T05:55:30.000Z (7 months ago)
- Last Synced: 2025-07-19T10:41:22.748Z (7 months ago)
- Topics: macos-app
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FuckingPKG
U know, install a pkg need Admin privilege...And it may contains fucking scripts that polluting your Mac.
So, try NOT double-click a pkg. Expand it instead.
```bash
pkgutil --expand install.pkg install_pkg
cd install_pkg
cat Payload | cpio -idm
```
If cpio failed, try
```bash
gzip -dc Payload | cpio -idm
```
It should works for most App, except some one required ```root``` daemon.