Skip to content

Commit 5abab43

Browse files
committed
Before we can install the artoolkit6-dev package we need to install the -lib. As -dev depends on -lib
1 parent e8fa252 commit 5abab43

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

build.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,11 @@ if [ "$OS" = "Linux" ] ; then
160160
# Linux
161161
if [ $BUILD_LINUX ] ; then
162162

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+
163168
# Fetch the artoolkit6-dev package and install it.
164169
SDK_FILENAME="artoolkit6-dev_${SDK_VERSION}_amd64.deb"
165170
curl -f -o "${SDK_FILENAME}" "${SDK_URL_DIR}$(rawurlencode "${SDK_FILENAME}")"

0 commit comments

Comments
 (0)