summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-09-09 11:38:45 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-09-11 11:58:08 +0900
commit14e1aa2006796f147f3f4811fb908a6b01e79253 (patch)
treedc9b87475668aa2fe1b774653c63b610fce9ab5e
downloadextra-dependencies-14e1aa2006796f147f3f4811fb908a6b01e79253.tar.gz
extra-dependencies-14e1aa2006796f147f3f4811fb908a6b01e79253.zip
Initialize the repo.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--Readme.md34
1 files changed, 34 insertions, 0 deletions
diff --git a/Readme.md b/Readme.md
new file mode 100644
index 00000000..4ff4151d
--- /dev/null
+++ b/Readme.md
@@ -0,0 +1,34 @@
+# Trinity Desktop Environment GIT Repositories for extra packages
+
+TDE is a comprehensive desktop environment that includes both
+core packages and applications designed for it.
+
+The complete source code is split into many individual GIT repositories,
+connected together into a tree structure of modules and submodules. The
+main *TDE* repository provides the entry point to the root of such tree,
+simplifying navigation and cloning operation of the complete TDE code.
+
+TDE packaging repository contains files designed to create source and
+binary packages for distributions such as Debian, Fedora, and so on.
+
+TDE extra-dependencies repository contains packages required to build
+TDE under various distributions but for which the TDE team is not the
+upstream maintainer.
+
+
+## Check out the complete TDE source code
+
+To check out the complete source tree from GIT,
+you can use the following procedure:
+
+```
+cd <base folder>
+git clone https://mirror.git.trinitydesktop.org/gitea/TDE/tde.git
+git clone https://mirror.git.trinitydesktop.org/gitea/TDE/scripts.git tde/scripts
+cd tde
+./scripts/switch_all_submodules_to_head_and_clean anonymous
+
+Optionally to get the extra dependencies:
+cd <base folder>
+git clone https://mirror.git.trinitydesktop.org/gitea/TDE/extra-dependencies.git
+```