summaryrefslogtreecommitdiff
path: root/debian/control
diff options
context:
space:
mode:
authorDidier Raboud <odyx@debian.org>2017-10-22 17:53:00 +0200
committerDidier Raboud <odyx@debian.org>2017-10-22 17:53:00 +0200
commit58353517fe455cecd6cbde9d6561462c8c4516a8 (patch)
tree07df7ae61e8933994afc59c59591c48e851fe776 /debian/control
parentb68437915a2f93c077d0c3038a49b3d470069e22 (diff)
parent1cdd013e9ce1ed0b0737c1f91dbb7c7dcf6a8975 (diff)
argagg (0.4.6-2) unstable; urgency=medium
* Mark argagg-dev Multi-Arch: foreign * Add gbp.conf [dgit import unpatched argagg 0.4.6-2]
Diffstat (limited to 'debian/control')
-rw-r--r--debian/control52
1 files changed, 52 insertions, 0 deletions
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..417c9cb
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,52 @@
+Source: argagg
+Section: devel
+Priority: optional
+Maintainer: Didier Raboud <odyx@debian.org>
+Build-Depends:
+ debhelper (>= 10.2.5~),
+ doctest-dev,
+ cmake,
+ doxygen,
+Standards-Version: 4.1.1
+Homepage: https://github.com/vietjtnguyen/argagg
+Vcs-Git: https://alioth.debian.org/anonscm/git/collab-maint/argagg.git
+Vcs-Browser: https://anonscm.debian.org/cgit/collab-maint/argagg.git
+
+Package: argagg-dev
+Architecture: all
+Multi-Arch: foreign
+Depends: ${misc:Depends}
+Description: Argument Aggregator - Simple C++11 command line argument parser
+ This is yet another C++ command line argument/option parser. It was
+ written as a simple and idiomatic alternative to other frameworks like
+ getopt, Boost program options, TCLAP, and others. The goal is to achieve
+ the majority of argument parsing needs in a simple manner with an easy
+ to use API. It operates as a single pass over all arguments, recognizing
+ flags prefixed by - (short) or -- (long) and aggregating them into easy
+ to access structures with lots of convenience functions. It defers
+ processing types until you access them, so the result structures end up
+ just being pointers into the original command line argument C-strings.
+ .
+ argagg supports POSIX recommended argument syntax conventions.
+
+Package: argagg-dev-doc
+Architecture: all
+Multi-Arch: foreign
+Section: doc
+Depends:
+ libjs-jquery,
+ ${misc:Depends}
+Description: Argument Aggregator - Simple C++11 command line argument parser - source doc
+ This is yet another C++ command line argument/option parser. It was
+ written as a simple and idiomatic alternative to other frameworks like
+ getopt, Boost program options, TCLAP, and others. The goal is to achieve
+ the majority of argument parsing needs in a simple manner with an easy
+ to use API. It operates as a single pass over all arguments, recognizing
+ flags prefixed by - (short) or -- (long) and aggregating them into easy
+ to access structures with lots of convenience functions. It defers
+ processing types until you access them, so the result structures end up
+ just being pointers into the original command line argument C-strings.
+ .
+ argagg supports POSIX recommended argument syntax conventions.
+ .
+ This package contains the doxygen documentation for the argagg source code.