1#!/bin/sh
2#
3# $FreeBSD$
4#
5
6if [ "`id -u`" != "0" ]; then
7	echo "Sorry, this must be done as root."
8	exit 1
9fi
10echo "Extracting commerce tarball into ${DESTDIR}/usr/local"
11tar --unlink -xpzf commerce.tgz -C ${DESTDIR}/usr/local
12exit 0
13