I am attempting to write a script that will automatically install ports that I commonly use.
I can override the options set in the in the Makefile by using
Now, for the more complex ports that have dependencies that also need to configure, how can I recursively configure them?
Ultimately, I just want exclude DOCS and EXAMPLES from being built (I'm going for the smallest build possible)
I can override the options set in the in the Makefile by using
OPTIONS_SET=SOMEVARIABLE
. So for instance, if I want to configure portmaster to not support ZSH, I would use the command make OPTIONS_UNSET=ZSH -DBATCH make install clean
and it will install portmaster without ZSH support.Now, for the more complex ports that have dependencies that also need to configure, how can I recursively configure them?
Ultimately, I just want exclude DOCS and EXAMPLES from being built (I'm going for the smallest build possible)