The submission instructions for SSC (http://repec.org/bocode/s/sscsubmit.html) note that a .pkg file is not to be used. Mostly that is not a problem, because SSC creates its own from the package contents.
However, .pkg files also handle OS-specific files (e.g., binary plugins).
The package file specifies a single target here, omamatv3.plugin, and offers 5 OS-specific binaries. The net install command thus knows which one to choose.
How can I make a submission to SSC that specifies which binary to use for which OS?
However, .pkg files also handle OS-specific files (e.g., binary plugins).
The package file specifies a single target here, omamatv3.plugin, and offers 5 OS-specific binaries. The net install command thus knows which one to choose.
Code:
g WIN omamatv3.w32.plugin omamatv3.plugin g WIN64A omamatv3.w64.plugin omamatv3.plugin g LINUX omamatv3.linux.plugin omamatv3.plugin g LINUX64 omamatv3.linux64.plugin omamatv3.plugin g MACINTEL64 omamatv3.mac.plugin omamatv3.plugin h omamatv3.plugin
Comment