summaryrefslogtreecommitdiff
path: root/debian/control
diff options
context:
space:
mode:
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.