Browse Source

kdesrc-build, kdesrc-run: add page (#11487)

* kdesrc-build: add page

* kdesrc-run: add page

* Update kdesrc-build.md

* Update kdesrc-build.md
Managor 1 year ago
parent
commit
c17c47888c
2 changed files with 28 additions and 0 deletions
  1. 20 0
      pages/linux/kdesrc-build.md
  2. 8 0
      pages/linux/kdesrc-run.md

+ 20 - 0
pages/linux/kdesrc-build.md

@@ -0,0 +1,20 @@
+# kdesrc-build
+
+> Easily build KDE components from its source repositories.
+> More information: <https://invent.kde.org/sdk/kdesrc-build>.
+
+- Initialize kdesrc-build:
+
+`kdesrc-build --initial-setup`
+
+- Build a KDE `component_name` and its dependencies from source:
+
+`kdesrc-build {{component_name}}`
+
+- Build a component without updating its local code and without compiling its dependencies:
+
+`kdesrc-build --no-src --no-include-dependencies {{component_name}}`
+
+- Refresh the build directories:
+
+`kdesrc-build --refresh-build {{component_name}}`

+ 8 - 0
pages/linux/kdesrc-run.md

@@ -0,0 +1,8 @@
+# kdesrc-run
+
+> Run KDE components that have been built with kdesrc-build.
+> More information: <https://invent.kde.org/sdk/kdesrc-build>.
+
+- Run a component:
+
+`kdesrc-run {{component_name}}`