11 lines
206 B
Bash
Executable File
11 lines
206 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Preparing FreeBSD environment"
|
|
sysctl hw.model hw.machine hw.ncpu
|
|
set -e
|
|
set -x
|
|
|
|
env ASSUME_ALWAYS_YES=YES pkg bootstrap
|
|
pkg install -y bash git cmake bison base64 flex
|
|
pkg upgrade -y curl
|