debian: create -doc subpackage with pdf manuals

I have verified, that the resulting debian packages build in my own OBS
namespace (see the -doc packages):
https://download.opensuse.org/repositories/home:/osmith42/Debian_9.0/all/
https://build.opensuse.org/project/show/home:osmith42

Depends: Ib7251cca9116151e473798879375cd5eb48ff3ad (osmo-ci)
Related: OS#3899
Change-Id: I1f412953e60c10e6146327a90edbd18d738e1365
This commit is contained in:
Oliver Smith 2019-05-21 15:10:57 +02:00
parent 5227207506
commit 1ae52d1a65
4 changed files with 18 additions and 2 deletions

12
debian/control vendored
View File

@ -14,7 +14,8 @@ Build-Depends: debhelper (>= 9),
doxygen,
libdpkg-perl,
libosmo-netif-dev (>= 0.3.0),
libsctp-dev
libsctp-dev,
osmo-gsm-manuals-dev
Standards-Version: 3.9.7
Vcs-Git: git://git.osmocom.org/libosmo-sccp.git
Vcs-Browser: http://git.osmocom.org/libosmo-sccp/
@ -121,3 +122,12 @@ Description: Debug symbols for Osmocom SIGTRAN STP (Signaling Transfer Point)
networks. At this point it is a very minimal implementation, missing
lots of the functionality usually present in a STP, such as Global Title
Routing, Global Title Translation.
Package: osmo-stp-doc
Architecture: all
Section: doc
Priority: optional
Depends: ${misc:Depends}
Description: ${misc:Package} PDF documentation
Various manuals: user manual, VTY reference manual and/or
protocol/interface manuals.

1
debian/osmo-stp-doc.install vendored Normal file
View File

@ -0,0 +1 @@
usr/share/doc/osmo-stp-doc/*.pdf

6
debian/rules vendored
View File

@ -22,7 +22,7 @@ override_dh_install:
# enable-static: we require the tests to link to the static libosmo-sigtran
# library to access symbols not starting with osmo_*
override_dh_auto_configure:
dh_auto_configure -- --enable-static --with-systemdsystemunitdir=/lib/systemd/system
dh_auto_configure -- --enable-static --with-systemdsystemunitdir=/lib/systemd/system --enable-manuals
# Print test results in case of a failure
override_dh_auto_test:
@ -31,3 +31,7 @@ override_dh_auto_test:
override_dh_clean:
dh_clean
rm -f .version tests/package.m4 tests/testsuite
# Don't create .pdf.gz files (barely saves space and they can't be opened directly by most pdf readers)
override_dh_compress:
dh_compress -X.pdf

View File

@ -13,5 +13,6 @@ if BUILD_MANUALS
VTY_REFERENCE = osmostp-vty-reference.xml
include $(OSMO_GSM_MANUALS_DIR)/build/Makefile.vty-reference.inc
OSMO_REPOSITORY=osmo-stp
include $(OSMO_GSM_MANUALS_DIR)/build/Makefile.common.inc
endif