We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8fa252 commit 5abab43Copy full SHA for 5abab43
build.sh
@@ -160,6 +160,11 @@ if [ "$OS" = "Linux" ] ; then
160
# Linux
161
if [ $BUILD_LINUX ] ; then
162
163
+ #Before we can install the artoolkit6-dev package we need to install the -lib. As -dev depends on -lib
164
+ SDK_FILENAME="artoolkit6-lib_${SDK_VERSION}_amd64.deb"
165
+ curl -f -o "${SDK_FILENAME}" "${SDK_URL_DIR}$(rawurlencode "${SDK_FILENAME}")"
166
+ sudo dpkg -i "${SDK_FILENAME}"
167
+
168
# Fetch the artoolkit6-dev package and install it.
169
SDK_FILENAME="artoolkit6-dev_${SDK_VERSION}_amd64.deb"
170
curl -f -o "${SDK_FILENAME}" "${SDK_URL_DIR}$(rawurlencode "${SDK_FILENAME}")"
0 commit comments