Blame docker-builder-data/build/script/packet/opentoonz-debug.sh

3b09af
DEPS="jpeg-9b png-1.6.26 lz4-master glew-2.0.0 usb-1.0.20 sdl-2.0.5 superlu-4.3 freeglut-3.0.0 openblas-master boost-1.61.0 qt-5.7"
3b09af
DEPS_NATIVE="cmake-3.6.2"
87264d
87264d
PK_VERSION="1.1.2"
87264d
PK_DIRNAME="opentoonz"
87264d
PK_URL="https://github.com/opentoonz/$PK_DIRNAME.git"
87264d
87264d
source $INCLUDE_SCRIPT_DIR/inc-pkallunpack-git.sh
87264d
source $INCLUDE_SCRIPT_DIR/inc-pkinstall_release-default.sh
87264d
87264d
pkbuild() {
87264d
    if ! (cp --remove-destination "$FILES_PACKET_DIR/Makefile.in" "$PK_DIRNAME/thirdparty/tiff-4.0.3/libtiff/" \
87264d
     && cp --remove-destination "$FILES_PACKET_DIR/FindTIFF.cmake" "$PK_DIRNAME/toonz/cmake/"); then
87264d
        return 1
87264d
    fi
87264d
	
87264d
	if ! check_packet_function $NAME build.libtiff; then
87264d
		cd "$BUILD_PACKET_DIR/$PK_DIRNAME/thirdparty/tiff-4.0.3"
87264d
		if ! check_packet_function $NAME build.libtiff.configure; then
87264d
			if ! ./configure; then
87264d
	    		return 1
87264d
	    	fi
87264d
			set_done $NAME build.libtiff.configure
87264d
	    fi
87264d
		
87264d
		if ! make -j${THREADS}; then
87264d
    		return 1
87264d
    	fi
87264d
		set_done $NAME build.libtiff
87264d
    fi
87264d
87264d
	if ! cp --remove-destination "$ENVDEPS_PACKET_DIR/lib/libsuperlu_4.3.a" "$BUILD_PACKET_DIR/$PK_DIRNAME/thirdparty/superlu/libsuperlu_4.1.a"; then
87264d
		return 1
87264d
	fi
87264d
87264d
	mkdir -p "$BUILD_PACKET_DIR/$PK_DIRNAME/toonz/build"
87264d
	cd "$BUILD_PACKET_DIR/$PK_DIRNAME/toonz/build"
87264d
	if ! check_packet_function $NAME build.configure; then
87264d
		if ! cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX:PATH=$INSTALL_PACKET_DIR ../sources; then
87264d
    		return 1
87264d
    	fi
87264d
		set_done $NAME build.configure
87264d
    fi
87264d
	
87264d
    # making in single thread is too slow, but life is too short...
87264d
	if ! (make -j${THREADS} || make -j${THREADS} || make); then
87264d
		return 1
87264d
	fi
87264d
}
87264d
87264d
pkinstall() {
87264d
    cd "$BUILD_PACKET_DIR/$PK_DIRNAME/toonz/build"
87264d
    make install || return 1
87264d
87264d
    cp --remove-destination "$FILES_PACKET_DIR/launch-opentoonz.sh" "$INSTALL_PACKET_DIR/bin" || return 1
87264d
    cp --remove-destination $BUILD_PACKET_DIR/$PK_DIRNAME/thirdparty/tiff-4.0.3/libtiff/.libs/libtiff.so* "$INSTALL_PACKET_DIR/lib" || return 1
87264d
    cp --remove-destination $BUILD_PACKET_DIR/$PK_DIRNAME/thirdparty/tiff-4.0.3/libtiff/.libs/libtiffxx.so* "$INSTALL_PACKET_DIR/lib" || return  1
87264d
87264d
    copy_system_lib libudev     "$INSTALL_PACKET_DIR/lib/" || return 1
87264d
    copy_system_lib libgfortran "$INSTALL_PACKET_DIR/lib/" || return 1
87264d
    copy_system_lib libpng12    "$INSTALL_PACKET_DIR/lib/" || return 1
87264d
}