meta data for this page
This is an old revision of the document!
tasks
remove tasks
Usefull to remove default tasks (configure + compile) for copy-only packages.
3 method possible:
- deltask - completely removes tasks and its dependency (use with care!)
- NOP task - define tasks as empty:
do_compile() { : }. Old way to “disable”, tasks are still executed so it generate overhead. - do_task[noexec] - is new way to cleanly disable task. No overhead, task is skipped.
do_fetch[noexec] = "1" do_unpack[noexec] = "1" do_patch[noexec] = "1" do_configure[noexec] = "1" do_compile[noexec] = "1"