mirror of
https://github.com/bspeice/libcvautomation
synced 2024-12-04 13:58:11 -05:00
Fix the debian build process up
This commit is contained in:
parent
14a4a859f1
commit
02ae3354d0
10
ChangeLog
10
ChangeLog
@ -1,3 +1,13 @@
|
||||
libcvautomation (2.0-1) precise; urgency=low
|
||||
|
||||
* Release version 2.0-1 of libcvautomation
|
||||
* Now includes Python support (2.x)!
|
||||
* Rename functions in Bash wrapper
|
||||
* Add some minor missing functions in main library
|
||||
* Bugfixes
|
||||
|
||||
-- Bradlee Speice <bspeice@uncc.edu> Fri, 17 Aug 2012 16:45:00 -0500
|
||||
|
||||
libcvautomation (1.5-1) precise; urgency=low
|
||||
|
||||
* Release version 1.5-1 of libcvautomation
|
||||
|
2
debian/control
vendored
2
debian/control
vendored
@ -37,7 +37,7 @@ Description: Example programs to demonstrate libcvautomation functionality
|
||||
|
||||
Package: libcvautomation-python
|
||||
Depends: ${shlibs:Depends}, ${misc:Depends}, python2.7
|
||||
Architecture: all
|
||||
Architecture: any
|
||||
Description: Python bindings for libcvautomation
|
||||
Contains the python libcvautomation module to allow python code to interface
|
||||
with libcvautomation.
|
||||
|
2
debian/libcvautomation-python.install
vendored
2
debian/libcvautomation-python.install
vendored
@ -1 +1 @@
|
||||
/usr/lib/python*/site-packages/*
|
||||
/usr/lib/python*/*
|
||||
|
1
debian/rules
vendored
1
debian/rules
vendored
@ -23,4 +23,5 @@ override_dh_install:
|
||||
find debian/tmp/usr/lib -name "*.la" -exec \
|
||||
sed -i -e "s,^dependency_libs=.*,dependency_libs=''," {} \;
|
||||
find debian/tmp/usr/lib -name "*.pyc" -exec rm {} \;
|
||||
find debian/tmp/usr/lib -name "*.pyo" -exec rm {} \;
|
||||
dh_install
|
||||
|
@ -1,6 +1,6 @@
|
||||
pyexec_LTLIBRARIES = _libcvautomation.la
|
||||
_libcvautomation_la_SOURCES = libcvautomation-swig.c
|
||||
_libcvautomation_la_LDFLAGS = -avoid-version -module $(PYTHON_LDFLAGS)
|
||||
_libcvautomation_la_LDFLAGS = -avoid-version -module $(PYTHON_LDFLAGS) -L$(top_srcdir)/libcvautomation/.libs
|
||||
_libcvautomation_la_LIBADD = -lcvautomation
|
||||
_libcvautomation_la_CFLAGS = $(PYTHON_CPPFLAGS) -I$(top_srcdir)/include
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user