Added man build steps to PKGBUILD for python-archinstall.

This commit is contained in:
Anton Hvornum 2021-01-28 16:43:19 +01:00
parent e64bc3ae87
commit 4a235ced59
No known key found for this signature in database
GPG Key ID: F1234C5BA67C59DF
1 changed files with 6 additions and 0 deletions

View File

@ -19,6 +19,10 @@ build() {
cd "archinstall-${pkgver}"
python setup.py build
# Build man pages
cd docs
make man
}
package() {
@ -28,6 +32,8 @@ package() {
--prefix=/usr \
--root="${pkgdir}" \
--optimize=1
install -Dm644 docs/_build/man/archinstall.1 "${pkgdir}"/usr/share/man/man1/archinstall.1
}
# vim:ft=sh