aboutsummaryrefslogtreecommitdiff
path: root/release/scripts/xperimnt-install.sh
blob: 9468696caadfbe23a99a01eeba1b96a322149940 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
#
# $FreeBSD: src/release/scripts/xperimnt-install.sh,v 1.3.36.1.6.1 2010/12/21 17:09:25 kensmith Exp $
#

if [ "`id -u`" != "0" ]; then
	echo "Sorry, this must be done as root."
	exit 1
fi
echo "Extracting xperimnt tarball into ${DESTDIR}/usr/local"
tar --unlink -xpzf xperimnt.tgz -C ${DESTDIR}/usr/local
exit 0