1#!/bin/sh 2 3CORE_TOOLS="openssh vim curl" 4DEV_TOOLS="git-base bmake gmake binutils clang" 5EXTRA_TOOLS="bison groff perl python27" 6 7cat <<START_EOT 8This script contains 3 sets of packages, you can install any of those 9sets independently, just type N when pkgin ask for confirmation to skip 10a set. 11 12The following sets are available: 13 141. Core tools: 15${CORE_TOOLS} 16 172. Dev tools: 18${DEV_TOOLS} 19 203. Extras: 21${EXTRA_TOOLS} 22 23START_EOT 24 25echo "Installing core tools" 26echo "=====================" 27echo 28 29pkgin install ${CORE_TOOLS} 30 31echo 32echo "Installing default development tools" 33echo "====================================" 34echo 35 36pkgin install ${DEV_TOOLS} 37 38echo 39echo "Installing extras" 40echo "=================" 41echo 42 43pkgin install ${EXTRA_TOOLS} 44