1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-08 16:06:02 +02:00
tldr/pages/linux/kde-builder.md
Managor d472ca54bb
kde-builder: simplify initialization (#16325)
Co-authored-by: Wiktor Perskawiec <git@spageektti.cc>
2025-05-02 16:41:12 +03:00

37 lines
1 KiB
Markdown

# kde-builder
> Easily build KDE components from its source repositories.
> Drop-in replacement for `kdesrc-build`.
> More information: <https://kde-builder.kde.org/en/cmdline/cmdline-usage.html>.
- Initialize `kde-builder`:
`kde-builder --initial-setup`
- Compile a KDE component and its dependencies from the source:
`kde-builder {{component_name}}`
- Compile a component without updating its local code and without compiling its dependencies:
`kde-builder {{[-S|--no-src]}} {{[-D|--no-include-dependencies]}} {{component_name}}`
- Refresh the build directories before compiling:
`kde-builder {{[-r|--refresh-build]}} {{component_name}}`
- Resume compilation from a specific dependency:
`kde-builder {{[-f|--resume-from]}} {{dependency_component}} {{component_name}}`
- Run a component with a specified executable name:
`kde-builder --run {{executable_name}}`
- Build all configured components:
`kde-builder`
- Use system libraries in place of a component if it fails to build:
`kde-builder --no-stop-on-failure {{component_name}}`