Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-06-10 13:32:39 +0200
committerGitHub <noreply@github.com>2021-06-10 13:32:39 +0200
commit67b1a9395f02593fb4455c999dc1c270157133f4 (patch)
tree0d0ba238f0be2ced3b00e39758c831ad58daff65
parent5ae3d11ab2b248181ec403641d376f3467028ab8 (diff)
parentb8631f6bb6234b9788960ceb44696af0cd1ea48f (diff)
Merge pull request #551 from m1ten/patch-1
adds python-sphinx in make dependency and manual
-rw-r--r--PKGBUILD4
1 files changed, 3 insertions, 1 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 7a5da658..cc7a669f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -10,16 +10,18 @@ arch=('any')
url="https://github.com/archlinux/archinstall"
license=('GPL')
depends=('python')
-makedepends=('python-setuptools')
+makedepends=('python-setuptools' 'python-sphinx')
provides=('python-archinstall')
conflicts=('archinstall' 'python-archinstall' 'python-archinstall-git')
build() {
cd "$startdir"
python setup.py build
+ make man -C docs
}
package() {
cd "$startdir"
python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+ install -vDm 644 docs/_build/man/archinstall.1 -t "${pkgdir}/usr/share/man/man1/"
}