Blame docker-builder-data/build/script/include/inc-pkbuild-default.sh

e14835
e14835
# PK_DIRNAME
e14835
e14835
pkbuild() {
e14835
    cd "$BUILD_PACKET_DIR/$PK_DIRNAME"
e14835
    
e14835
	if ! check_packet_function $NAME build.cunfigure; then
e14835
    	if ! ./configure --prefix=$INSTALL_PACKET_DIR; then
e14835
    		return 1
e14835
    	fi
e14835
		set_done $NAME build.cunfigure
e14835
    fi
e14835
    
e14835
    if ! make -j${THREADS}; then
e14835
        return 1
e14835
    fi
e14835
}