mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-22 09:05:59 +01:00
docs: install manpages with meson
This commit is contained in:
parent
463bc7ab13
commit
fea6d7deb0
4 changed files with 10 additions and 2 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -10,7 +10,7 @@ CTestTestfile.cmake
|
||||||
_deps
|
_deps
|
||||||
|
|
||||||
build/
|
build/
|
||||||
result
|
result*
|
||||||
/.vscode/
|
/.vscode/
|
||||||
.envrc
|
.envrc
|
||||||
.cache
|
.cache
|
||||||
|
|
2
docs/meson.build
Normal file
2
docs/meson.build
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
install_man ('Hyprland.1')
|
||||||
|
install_man ('hyprctl.1')
|
|
@ -59,3 +59,4 @@ subdir('src')
|
||||||
subdir('hyprctl')
|
subdir('hyprctl')
|
||||||
subdir('assets')
|
subdir('assets')
|
||||||
subdir('example')
|
subdir('example')
|
||||||
|
subdir('docs')
|
||||||
|
|
|
@ -44,6 +44,11 @@ stdenv.mkDerivation {
|
||||||
pkg-config
|
pkg-config
|
||||||
];
|
];
|
||||||
|
|
||||||
|
outputs = [
|
||||||
|
"out"
|
||||||
|
"man"
|
||||||
|
];
|
||||||
|
|
||||||
buildInputs =
|
buildInputs =
|
||||||
[
|
[
|
||||||
git
|
git
|
||||||
|
|
Loading…
Reference in a new issue