mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-22 19:44:21 +01:00
libraries/suil: Don't build the docs by default.
A Sphinx module is needed to build them and that's a bit overkill Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
21dc914818
commit
c5e06770d5
2 changed files with 9 additions and 1 deletions
|
@ -1 +1,6 @@
|
|||
Suil is a lightweight C library for loading and wrapping LV2 plugin UIs.
|
||||
Suil is a lightweight C library for loading and wrapping LV2
|
||||
plugin UIs.
|
||||
|
||||
By default docs aren't built: if you like to include them be sure
|
||||
to have the optional dependency python-sphinx-lv2-theme installed
|
||||
and pass the script the parameter DOCS=yes
|
||||
|
|
|
@ -65,6 +65,8 @@ else
|
|||
LIBDIRSUFFIX=""
|
||||
fi
|
||||
|
||||
doc="-Ddocs=disabled" ; [ "${DOCS:-no}" != "no" ] && doc="-Ddocs=enabled"
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
|
@ -92,6 +94,7 @@ cd build
|
|||
--mandir=/usr/man \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
$doc \
|
||||
-Dstrip=true
|
||||
"${NINJA:=ninja}"
|
||||
DESTDIR=$PKG $NINJA install
|
||||
|
|
Loading…
Reference in a new issue