Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding documentation for JDeb Packaging #290

Merged
merged 1 commit into from
Jul 10, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 ##

Expand Down
13 changes: 13 additions & 0 deletions src/sphinx/DetailedTopics/debian.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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