Merge branch 'master' into debian

This commit is contained in:
Victor LABORIE 2018-05-30 15:29:16 +02:00
commit 36d877bb06
2 changed files with 51 additions and 1 deletions

View file

@ -98,7 +98,7 @@ See [docs/usage.md](docs/usage.md).
Man page, in roff language, can be generated with pandoc :
~~~
pandoc -f markdown -t man usage.md --template default.man -V title=bkctld -V section=8 -V date="$(date '+%d %b %Y')" -V footer="$(git describe --tags)" -V header="bkctld man page" -V author="$(git shortlog -sne|awk '{ $1 = "" } sub(FS,"\n")')"
pandoc -f markdown -t man usage.md --template default.man -V title=bkctld -V section=8 -V date="$(date '+%d %b %Y')" -V footer="$(git describe --tags)" -V header="bkctld man page"
~~~
#### Client configuration

50
docs/debian.md Normal file
View file

@ -0,0 +1,50 @@
# Debian Package
**bkctld** package can be build from the **debian** branch of this Git repository with git-buildpackage and sbuild.
## Dependencies
Install Debian dependencies :
~~~
apt install git-buildpackage sbuild
~~~
Add your user to sbuild :
~~~
sbuild-adduser <username>
~~~
*You must logout and re-login or use `newgrp sbuild` in your current shell*
You need a schroot definition in */etc/schroot/schroot.conf*, eg :
~~~
[sid]
description=Debian sid (unstable)
directory=/srv/chroot/sid
groups=root,sbuild
root-groups=root,sbuild
aliases=unstable,default
~~~
Build the sbuild chroot :
~~~
sbuild-createchroot --include=eatmydata,ccache,gnupg unstable /srv/chroot/sid http://deb.debian.org/debian
~~~
## Build
You must be in **debian** branch :
~~~
git checkout debian
~~~
Launch git-buildpackage :
~~~
gbp buildpackage
~~~