parent
59430c1c14
commit
cde60b19e8
2 changed files with 7 additions and 2 deletions
|
|
@ -79,8 +79,12 @@ installs the terminfo file and :file:`kitty` that installs the main program.
|
|||
This allows users to install the terminfo file on servers into which they ssh,
|
||||
without needing to install all of kitty.
|
||||
|
||||
You also need :file:`tic` to compile the terminfo files, it is usually found in
|
||||
the development package of :file:`ncurses`.
|
||||
.. note::
|
||||
You need a couple of extra dependencies to build linux-package.
|
||||
:file:`tic` to compile terminfo files, usually found in the
|
||||
development package of :file:`ncurses`. Also, :file:`sphinx-build`
|
||||
from the `Sphinx documentation generator
|
||||
<http://www.sphinx-doc.org/>`_.
|
||||
|
||||
This applies to creating packages for kitty for macOS package managers such as
|
||||
brew or MacPorts as well.
|
||||
|
|
|
|||
1
setup.py
1
setup.py
|
|
@ -788,6 +788,7 @@ def main():
|
|||
)
|
||||
elif args.action == 'linux-package':
|
||||
build(args, native_optimizations=False)
|
||||
run_tool(['make', 'docs'])
|
||||
package(args)
|
||||
elif args.action == 'osx-bundle':
|
||||
build(args, native_optimizations=False)
|
||||
|
|
|
|||
Loading…
Reference in a new issue