summaryrefslogtreecommitdiff
path: root/debian/control
diff options
context:
space:
mode:
authorRuben Undheim <ruben.undheim@gmail.com>2016-02-09 20:12:49 +0100
committerRuben Undheim <ruben.undheim@gmail.com>2016-02-09 20:12:49 +0100
commita207016d989d1fa3854ad0257fd733826dc8fced (patch)
tree10b66289f003230ec9b7ceeae799618d27a53166 /debian/control
parent8eb24cbfcface9379d7f3549c338708ab8232822 (diff)
parent57f43f979ef705dab0f2218e5642ca3700ef4f22 (diff)
mrtdreader (0.1.6-1) unstable; urgency=medium
* New upstream release - Fixes some issues with UK and US passports at least * debian/control: - Changed Vcs-Git to https url - Removed -dbg package since -dbgsym is automatically built * debian/rules: - Remove override of dh_strip target [dgit import unpatched mrtdreader 0.1.6-1]
Diffstat (limited to 'debian/control')
-rw-r--r--debian/control72
1 files changed, 72 insertions, 0 deletions
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..7a61adc
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,72 @@
+Source: mrtdreader
+Maintainer: Ruben Undheim <ruben.undheim@gmail.com>
+Section: utils
+Priority: optional
+Build-Depends: debhelper (>= 9),
+ cmake,
+ pkg-config,
+ libnfc-dev,
+ libgcrypt20-dev
+Standards-Version: 3.9.6
+Vcs-Browser: https://github.com/rubund/mrtdreader/tree/debian
+Vcs-Git: https://github.com/rubund/mrtdreader.git -b debian
+Homepage: https://github.com/rubund/mrtdreader
+
+Package: libmrtd0
+Architecture: any
+Section: libs
+Depends: ${shlibs:Depends},
+ ${misc:Depends}
+Pre-Depends: ${misc:Pre-Depends}
+Multi-Arch: same
+Description: MRTD - Machine-readable travel document library
+ Machine-readable travel documents such as passports nowadays usually contain
+ an RFID chip for storing various data. This library provides useful functions
+ for reading out the data from these documents. This version of the library
+ supports the Basic Access Control (BAC). It uses several cryptographic
+ functions from either libgcrypt or libtomcrypt (depending on compile-time
+ options) in order to do the necessary decryption of the content of the MRTDs.
+ The key for the BAC-scheme is derived from the Machine-readable zone (MRZ)
+ which is printed on the MRTD.
+ .
+ The library depends on libnfc for the hardware interaction and only devices
+ supported by libnfc will therefore work.
+
+Package: libmrtd-dev
+Architecture: any
+Section: libdevel
+Depends: libmrtd0 (= ${binary:Version}),
+ libgcrypt20-dev,
+ libnfc-dev,
+ ${misc:Depends}
+Multi-Arch: same
+Description: Development files for libmrtd0
+ Machine-readable travel documents such as passports nowadays usually contain
+ an RFID chip for storing various data. This library provides useful functions
+ for reading out the data from these documents. This version of the library
+ supports the Basic Access Control (BAC). It uses several cryptographic
+ functions from either libgcrypt or libtomcrypt (depending on compile-time
+ options) in order to do the necessary decryption of the content of the MRTDs.
+ The key for the BAC-scheme is derived from the Machine-readable zone (MRZ)
+ which is printed on the MRTD.
+ .
+ The library depends on libnfc for the hardware interaction and only devices
+ supported by libnfc will therefore work.
+ .
+ This package contains header files for building programs linked with
+ libmrtd0.
+
+Package: mrtdreader
+Architecture: any
+Depends: libmrtd0 (= ${binary:Version}),
+ ${shlibs:Depends},
+ ${misc:Depends}
+Suggests: graphicsmagick
+Description: Reader for machine-readable travel documents (MRTDs / passports)
+ This program takes as input the content of the machine-readable zone of
+ machine-readable travel documents and then reads out some data and dumps the
+ facial image to a file.
+ .
+ It is the example application delivered together with libmrtd.
+ .
+ Only reader devices which are fully supported by libnfc will work.