KXStudio Website https://kx.studio/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

81 lines
3.0KB

  1. <?php
  2. $PAGE_TITLE = "KXStudio : Repositories";
  3. $PAGE_TYPE = "KXSTUDIO";
  4. $PAGE_SOURCE_1 = ARRAY("/Repositories");
  5. $PAGE_SOURCE_2 = ARRAY("Repositories");
  6. include_once("includes/header.php");
  7. $DEBIAN_PACKAGE_URL = "https://launchpad.net/~kxstudio-debian/+archive/kxstudio/+files/kxstudio-repos_10.0.2_all.deb";
  8. ?>
  9. <div class="box box-description">
  10. <p>
  11. The KXStudio repositories support all Debian versions since <b>Buster</b> and Ubuntu <b>18.04</b> or above.<br/>
  12. They should work on all Debian-based distributions and variants.
  13. </p>
  14. <p>
  15. Once you have the repos installed, you can either manually install individual packages from them or
  16. add the meta-packages to automatically install large sets of recommended packages.<br/>
  17. See the <a href="<?php echo $ROOT; ?>/Documentation:Repository:Meta-Packages">Meta-Packages</a> page for more details.<br/>
  18. In either case, we always recommend to install the <b>kxstudio-default-settings</b> package after enabling the repositories.
  19. </p>
  20. <p>
  21. You might also want to check:
  22. </p>
  23. <ul>
  24. <li><a href="<?php echo $ROOT; ?>/Repositories:Applications">Applications in the repositories</a></li>
  25. <li><a href="<?php echo $ROOT; ?>/Repositories:Plugins">Plugins in the repositories</a></li>
  26. </ul>
  27. <p>
  28. Bug reports and package requests should be posted in the
  29. <a href="https://github.com/KXStudio/Repository/issues" target="_blank">Repository project page</a>.<br/>
  30. Below is information on how to enable the repositories.
  31. </p>
  32. </div>
  33. <hr/>
  34. <h3><span class="mw-headline">
  35. <img src="images/ico_debian.png" class="img_text_align" alt=""/> Debian / <img src="images/ico_ubuntu.png" class="img_text_align" alt=""/> Ubuntu
  36. </span></h3>
  37. <p>
  38. All Debian and Ubuntu users can enable our repositories by installing this deb file:
  39. <a href="<?php echo $DEBIAN_PACKAGE_URL; ?>" class="free" rel="nofollow">kxstudio-repos.deb</a>.<br/>
  40. You can install it manually by running this:<br/>
  41. </p>
  42. <pre>
  43. <span style="color: rgb(110, 110, 110);"># Install required dependencies if needed</span>
  44. sudo apt-get install apt-transport-https gpgv
  45. <span style="color: rgb(110, 110, 110);"># Download package file</span>
  46. <?php echo $DEBIAN_PACKAGE_URL; ?>
  47. <span style="color: rgb(110, 110, 110);"># Install it</span>
  48. sudo dpkg -i kxstudio-repos_9.5.1~kxstudio3_all.deb
  49. </pre>
  50. <p><br/>
  51. These packages contain:
  52. </p>
  53. <ul>
  54. <li>Various sources files that activates the separate repositories</li>
  55. <li>GPG keys used for package and repository signing</li>
  56. <li>A post-install script that clears up legacy repository setup</li>
  57. </ul>
  58. <hr/>
  59. <p>
  60. <b>NOTE:</b><br/>
  61. Please do not copy these instructions to your own website, wiki, etc.<br/>
  62. The packages file link might change at anytime, and so the instructions themselves.<br/>
  63. Always refer to this exact page for how-to enable the KXStudio repositories please.
  64. </p>
  65. <p><br/></p>
  66. <?php
  67. include_once("includes/footer.php");
  68. ?>