Added Python binding installer/deb package

This commit is contained in:
Matt Hill
2015-08-05 18:48:00 -04:00
parent 7061db5548
commit e640c99310
3 changed files with 15 additions and 1 deletions

View File

@@ -69,3 +69,13 @@ Description: Utilities for the OpenALPR library
OpenALPR is an open source Automatic License Plate Recognition library written
in C++. The library analyzes images and identifies license plates. The output
is the text representation of any license plate characters found in the image.
Package: python-openalpr
Section: libdevel
Architecture: amd64
Depends: libopenalpr-dev (= ${binary:Version}), ${misc:Depends}
Description: Python binding for OpenALPR library
OpenALPR is an open source Automatic License Plate Recognition library written
in C++. The library analyzes images and identifies license plates. The output
is the text representation of any license plate characters found in the image.

View File

@@ -0,0 +1 @@
usr/lib/python2.7/dist-packages/openalpr

View File

@@ -18,3 +18,6 @@ TARGET_LINK_LIBRARIES(openalprpy openalpr)
install (TARGETS openalprpy DESTINATION ${CMAKE_INSTALL_PREFIX}/lib)
install (DIRECTORY openalpr DESTINATION ${CMAKE_INSTALL_PREFIX}/lib/python2.7/dist-packages
USE_SOURCE_PERMISSIONS
)