mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-05 12:19:30 +00:00
b0d5cda0b1
these various collections to install someplace else.
10 lines
219 B
Bash
Executable File
10 lines
219 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
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
|