Hi! I want to build an AUR package named ‘satdump-git’ but want to exclude some plugins from it.
For example in the GIT repo there is a CMakeLists.txt with this:
option(PLUGIN_BLADERF_SDR_SUPPORT “Enable BladeRF SDR Support plugin” ON)
option(PLUGIN_USRP_SDR_SUPPORT “Enable USRP SDR Support plugin” ON)
I want to set them off:
“PLUGIN_BLADERF_SDR_SUPPORT=OFF”
“PLUGIN_USRP_SDR_SUPPORT=OFF”
I am going to use pamac build.
Where should I define these settings? is this in PKGBUILD options() ? comma separeted? any example?
Thanks!