From 7aeab80e0351a3f41d60a0ecc2b4c47e93b8a252 Mon Sep 17 00:00:00 2001 From: Nepomuk Seiler Date: Thu, 10 Jul 2014 21:41:03 +0200 Subject: [PATCH] Adding documentation for JDeb Packaging --- README.md | 9 +++++++++ src/sphinx/DetailedTopics/debian.rst | 13 +++++++++++++ 2 files changed, 22 insertions(+) diff --git a/README.md b/README.md index 4c1cf0418..a41976829 100644 --- a/README.md +++ b/README.md @@ -52,6 +52,15 @@ To publish the image, ``dockerRepository`` should also be set. As with the `systemd` support, help with testing and improvements is appreciated. +## Experimental JDeb support ## + +If don't run a linux or mac system with ``dpkg`` installed, you can configure the +debian packaging be done by [jdeb](https://github.com/tcurdt/jdeb). To enable this just set another packaging +implementation in your `build.sbt` + +```scala +packageBin in Debian <<= debianJDebPackaging in Debian +``` ## Documentation ## diff --git a/src/sphinx/DetailedTopics/debian.rst b/src/sphinx/DetailedTopics/debian.rst index cfd2e3a52..7cdd9c0e0 100644 --- a/src/sphinx/DetailedTopics/debian.rst +++ b/src/sphinx/DetailedTopics/debian.rst @@ -165,3 +165,16 @@ created within in the ``postinst`` script and removed with ``apt-get purge`` thr ``postrm`` script. For more information look at the :ref:`Archetypes` page. + +Use JDeb for Debian Packaging +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +If don't run a linux or mac system with ``dpkg`` installed, you can configure the +debian packaging be done by `jdeb`_ . To enable this just set another packaging +implementation in your ``build.sbt`` + +.. code-block:: scala + + packageBin in Debian <<= debianJDebPackaging in Debian + +.. _jdeb: https://github.com/tcurdt/jdeb