blob: 38ae2fed564e511f0235fc12e4ec4854cc59d1c7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
#
# $FreeBSD: src/release/scripts/commerce-install.sh,v 1.3.36.1.2.1 2009/10/25 01:10:29 kensmith Exp $
#
if [ "`id -u`" != "0" ]; then
echo "Sorry, this must be done as root."
exit 1
fi
echo "Extracting commerce tarball into ${DESTDIR}/usr/local"
tar --unlink -xpzf commerce.tgz -C ${DESTDIR}/usr/local
exit 0
|