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

e14835
d32e1c
# PK_VERSION
e14835
# PK_ARCHIVE
e14835
e14835
pkunpack() {
e14835
	if [ ${PK_ARCHIVE: -7} == ".tar.gz" ]; then
e14835
    	if ! tar -xzf "$DOWNLOAD_PACKET_DIR/$PK_ARCHIVE"; then
e14835
        	return 1
e14835
    	fi
e14835
	elif [ ${PK_ARCHIVE: -7} == ".tgz" ]; then
e14835
    	if ! tar -xzf "$DOWNLOAD_PACKET_DIR/$PK_ARCHIVE"; then
e14835
        	return 1
e14835
    	fi
e14835
	else
e14835
    	if ! tar -xf "$DOWNLOAD_PACKET_DIR/$PK_ARCHIVE"; then
e14835
        	return 1
e14835
    	fi
e14835
	fi
9ab948
9ab948
	if [ -z "$PK_VERSION" ]; then
ec0475
		PK_VERSION="$(echo "$NAME" | cut -d'-' -f 2-)"
9ab948
	fi
9ab948
	echo "$PK_VERSION" > "$UNPACK_PACKET_DIR/version-$NAME"
9ab948
	[ ! $? -eq 0 ] && return 1
9ab948
	return 0
e14835
}