forked from Kurento/kms-markerdetector
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix debian/install and build process for binary & API clients
- Loading branch information
Showing
7 changed files
with
40 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Preparation script to build ALVAR from sources. | ||
# | ||
# ALVAR source code has some issues with modern versions of the compiler, so | ||
# we maintain a patch that fixes all compilation errors. This patch should be | ||
# applied once before the build step. | ||
|
||
# Bash options for strict error checking | ||
set -o errexit -o errtrace -o pipefail -o nounset | ||
|
||
# Trace all commands | ||
set -o xtrace | ||
|
||
# Apply our patch on the ALVAR sources | ||
git apply --verbose \ | ||
--directory=alvar-2.0.0-src-opencv3 \ | ||
./alvar-compat-opencv-2-3.patch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,12 @@ | ||
usr/include/alvar/*.h | ||
usr/include/alvar/*/*.h | ||
usr/include/alvar/*/*/*.h | ||
usr/include/kurento/modules/*/*.h | ||
usr/include/kurento/modules/*/*.hpp | ||
usr/lib/*/libalvar.so | ||
usr/lib/*/libalvarplatform.so | ||
usr/lib/*/libkmsmarkerdetectorimpl.so | ||
usr/lib/*/pkgconfig/*.pc | ||
usr/share/alvar/* | ||
usr/share/cmake-*/*/*.cmake | ||
usr/share/kurento/modules/*.kmd.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
usr/lib/*/lib*.so* | ||
usr/lib/*/kurento/*/*.so | ||
usr/lib/*/lib*.so.* | ||
usr/lib/*/libalvarcaptureplugin*.so |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters