Debian: Add a man page
This commit is contained in:
parent
dc22a9adc5
commit
6ae6a44ae9
|
|
@ -13,7 +13,8 @@ Build-Depends: cmake,
|
|||
libwayland-dev,
|
||||
libwebp-dev,
|
||||
libwlroots-dev,
|
||||
ninja-build
|
||||
ninja-build,
|
||||
pandoc
|
||||
Standards-Version: 4.6.2
|
||||
Homepage: https://github.com/hyprwm/hyprpaper
|
||||
Rules-Requires-Root: no
|
||||
|
|
|
|||
|
|
@ -0,0 +1,33 @@
|
|||
:title: hyprpaper
|
||||
|
||||
NAME
|
||||
====
|
||||
hyprpaper - Wallpaper utility for Hyprland (and other wlroots-based compositors).
|
||||
|
||||
SYNOPSIS
|
||||
========
|
||||
**hyprpaper** [arg [...]]
|
||||
|
||||
OPTIONS
|
||||
=======
|
||||
**-h**, **--help**
|
||||
Show command usage.
|
||||
|
||||
**-c**, **--config**
|
||||
Specify config file to use
|
||||
|
||||
**--no-fractional**, **-n**
|
||||
Disable fractional scaling support
|
||||
|
||||
BUGS
|
||||
====
|
||||
Submit bug reports and request features online at:
|
||||
<*https://github.com/hyprwm/hyprpaper/issues*>
|
||||
|
||||
SEE ALSO
|
||||
========
|
||||
Sources at: <*https://github.com/hyprwm/hyprpaper*>
|
||||
|
||||
AUTHORS
|
||||
=======
|
||||
Created by Alan M Varghese <alan@digistorm.in> for Debian GNU/Linux packaging of hyprpaper
|
||||
|
|
@ -0,0 +1 @@
|
|||
usr/share/doc/hyprpaper/hyprpaper.1
|
||||
|
|
@ -19,4 +19,6 @@ override_dh_clean:
|
|||
$(MAKE) clear
|
||||
|
||||
override_dh_auto_install:
|
||||
mkdir -p debian/tmp/usr/share/doc/hyprpaper
|
||||
pandoc debian/hyprpaper.1.rst --standalone --variable=header:"hyprpaper User Manual" --variable=section:1 --from rst --to man > debian/tmp/usr/share/doc/hyprpaper/hyprpaper.1
|
||||
dh_auto_install -- PREFIX='$${DESTDIR}/usr'
|
||||
|
|
|
|||
Loading…
Reference in New Issue