Commit 48742472 authored by Andreas Tille's avatar Andreas Tille
Browse files

Initial packaging

parent cbb53544
Loading
Loading
Loading
Loading

debian/changelog

0 → 100644
+5 −0
Original line number Diff line number Diff line
racon (1.3.1-1) UNRELEASED; urgency=medium

  * Initial release (Closes: #890187)

 -- Andreas Tille <tille@debian.org>  Fri, 08 Jun 2018 13:20:51 +0200

debian/compat

0 → 100644
+1 −0
Original line number Diff line number Diff line
11

debian/control

0 → 100644
+24 −0
Original line number Diff line number Diff line
Source: racon
Section: science
Priority: optional
Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.org>
Uploaders: Cédric Lood <cedric.lood@kuleuven.be>,
           Andreas Tille <tille@debian.org>
Build-Depends: debhelper (>= 11~)
Standards-Version: 4.1.4
Vcs-Browser: https://salsa.debian.org/med-team/racon
Vcs-Git: https://salsa.debian.org/med-team/racon.git
Homepage: https://github.com/isovic/racon

Package: racon
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: consensus module for raw de novo DNA assembly of long uncorrected reads
 Racon is intended as a standalone consensus module to correct raw
 contigs generated by rapid assembly methods which do not include a
 consensus step, such as Miniasm.
 .
 The goal of Racon is to generate genomic consensus which is of similar
 or better quality compared to the output generated by assembly methods
 which employ both error correction and consensus steps, while
 providing a speedup of several times compared to those m

debian/copyright

0 → 100644
+13 −0
Original line number Diff line number Diff line
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: racon
Upstream-Contact: Ivan Sovic <ivan.sovic@irb.hr>
                  Mile Sikic <mile.sikic@fer.hr>
Source: https://github.com/isovic/racon/releases

Files: *
Copyright: 2016-2018 Ivan Sovic <ivan.sovic@irb.hr>, Mile Sikic
License: MIT

Files: debian/*
Copyright: 2018 Andreas Tille <tille@debian.org>
License: MIT

debian/rules

0 → 100755
+22 −0
Original line number Diff line number Diff line
#!/usr/bin/make -f

# DH_VERBOSE := 1
export LC_ALL=C.UTF-8

include /usr/share/dpkg/default.mk
# this provides:
# DEB_SOURCE: the source package name
# DEB_VERSION: the full version of the package (epoch + upstream vers. + revision)
# DEB_VERSION_EPOCH_UPSTREAM: the package's version without the Debian revision
# DEB_VERSION_UPSTREAM_REVISION: the package's version without the Debian epoch
# DEB_VERSION_UPSTREAM: the package's upstream version
# DEB_DISTRIBUTION: the distribution(s) listed in the current entry of debian/changelog

# for hardening you might like to uncomment this:
# export DEB_BUILD_MAINT_OPTIONS=hardening=+all

%:
	dh $@

#get-orig-source:
#	. debian/get-orig-source
Loading