diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2010-05-05 16:25:32 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2010-05-05 16:25:32 +0200 |
commit | 2348c40f43486f2b4b4b5ac6dbbb6d079cc343ce (patch) | |
tree | 60afb31d7e597c5e67e6685ac4b8ed1bcc4a52b3 /debian | |
parent | 63b528a4585d10926a9972663435bc0abc815345 (diff) |
* debian/rules:
- install html doxygen in libapt-pkg-doc as well
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 2 | ||||
-rw-r--r-- | debian/control | 3 | ||||
-rwxr-xr-x | debian/rules | 3 |
3 files changed, 7 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 786fbb1db..29c8ea33b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -43,6 +43,8 @@ apt (0.7.25.4) UNRELEASED; urgency=low Thanks to "Aisano" for the fix * apt-pkg/deb/debrecords.cc: - fix max tag buffer size (LP: #545336, closes: #578959) + * debian/rules: + - install html doxygen in libapt-pkg-doc as well [ Robert Collins ] * Change the package index Info methods to allow apt-cache policy to be diff --git a/debian/control b/debian/control index d756871d1..7cc0a1307 100644 --- a/debian/control +++ b/debian/control @@ -51,6 +51,9 @@ Section: doc Description: Documentation for APT development This package contains documentation for development of the APT Debian package manipulation program and its libraries. + . + This includes the source code documentation generated by doxygen + in html format. Package: apt-utils Architecture: any diff --git a/debian/rules b/debian/rules index 37c96ef20..85683f721 100755 --- a/debian/rules +++ b/debian/rules @@ -144,7 +144,8 @@ libapt-pkg-doc: build-doc debian/shlibs.local # dh_installdocs -p$@ $(BLD)/docs/cache* $(BLD)/docs/design* $(BLD)/docs/dpkg-tech* \ $(BLD)/docs/files* $(BLD)/docs/method* \ - doc/libapt-pkg2_to_3.txt doc/style.txt + doc/libapt-pkg2_to_3.txt doc/style.txt \ + $(BLD)/doc/doxygen/html/* dh_installexamples -p$@ # dh_installmenu -p$@ # dh_installinit -p$@ |