I have a binary file, foo
. Built using vercel/pkg.
I would like to bundle this in an installer for mac; A .pkg
installer file.
It should install the binary in /usr/local/bin/foo
.
Attempt:
$ cd Desktop // <--- foo binary is here
$ pkgbuild --identifier com.foo.pkg --install-location ./usr/local/bin/ --root ./ foo.pkg
This creates a .pkg file: foo.pkg
on my desktop. And when i run foo.pkg
, it installs the foo
binary in /usr/local/bin
correctly, except that it also leaves foo.pkg
in /usr/local/bin
also.
How can make pkgbuild
avoid leaving foo.pkg
inside /usr/local/bin
?
UPDATE:
Based on this thread, I think it will work if i set BundleIsRelocatable
to false. But I am not able to figure out how that is done.