Blame docker-builder-data/build/script/packet/xml-2.9.4.sh

ce0d6b
DEPS=""
ce0d6b
ce0d6b
PK_DIRNAME="libxml2-2.9.4"
ce0d6b
PK_ARCHIVE="$PK_DIRNAME.tar.xz"
ce0d6b
PK_URL="https://git.gnome.org/browse/libxml2/snapshot/$PK_ARCHIVE"
ce0d6b
ce0d6b
source $INCLUDE_SCRIPT_DIR/inc-pkallunpack-default.sh
ce0d6b
source $INCLUDE_SCRIPT_DIR/inc-pkinstall-default.sh
ce0d6b
source $INCLUDE_SCRIPT_DIR/inc-pkinstall_release-default.sh
ce0d6b
ce0d6b
pkbuild() {
ce0d6b
    cd "$BUILD_PACKET_DIR/$PK_DIRNAME" || return 1
ce0d6b
	if ! check_packet_function $NAME build.cunfigure; then
ce0d6b
    	./autogen.sh --prefix=$INSTALL_PACKET_DIR --without-python || return 1
ce0d6b
		set_done $NAME build.cunfigure
ce0d6b
    fi
ce0d6b
    
ce0d6b
    if ! make -j${THREADS}; then
ce0d6b
        return 1
ce0d6b
    fi
ce0d6b
}