Commit 2a3ea9a3 authored by Andreas Tille's avatar Andreas Tille
Browse files

Documentation and autopkgtest

parent 825849e9
Loading
Loading
Loading
Loading

debian/README.test

0 → 100644
+8 −0
Original line number Diff line number Diff line
Notes on how this package can be tested.
────────────────────────────────────────

This package can be tested by running the provided test:

    sh run-unit-test

in order to confirm its integrity.
+8 −0
Original line number Diff line number Diff line
hilive (2.0a-2) UNRELEASED; urgency=medium

  * Install tutorial
  * Provide simple autopkgtest
  * Install documentation

 -- Andreas Tille <tille@debian.org>  Mon, 07 Oct 2019 14:54:36 +0200

hilive (2.0a-1) unstable; urgency=medium

  * New upstream version
+2 −1
Original line number Diff line number Diff line
@@ -13,7 +13,8 @@ Build-Depends: debhelper-compat (= 12),
               libseqan2-dev,
               zlib1g-dev,
               liblz4-dev,
               chrpath
               chrpath,
               markdown
Standards-Version: 4.4.1
Vcs-Browser: https://salsa.debian.org/med-team/hilive
Vcs-Git: https://salsa.debian.org/med-team/hilive.git

debian/docs

0 → 100644
+3 −0
Original line number Diff line number Diff line
debian/README.test
debian/tests/run-unit-test
tutorial
+5 −0
Original line number Diff line number Diff line
@@ -16,3 +16,8 @@ override_dh_auto_configure:
override_dh_install:
	chrpath --delete obj-$(DEB_BUILD_GNU_TYPE)/hilive*
	dh_install

override_dh_installdocs:
	markdown README.md > README.html
	dh_installdocs
	rm README.html
Loading