etc/services - sync with NetBSD-8
[minix.git] / minix / commands / pkgin_sets / pkgin_sets.sh
bloba21db7c09976ff6edf849d0afef44f01c09c06ec
1 #!/bin/sh
3 CORE_TOOLS="openssh vim curl"
4 DEV_TOOLS="git-base bmake gmake binutils clang"
5 EXTRA_TOOLS="bison groff perl python27"
7 cat <<START_EOT
8 This script contains 3 sets of packages, you can install any of those
9 sets independently, just type N when pkgin ask for confirmation to skip
10 a set.
12 The following sets are available:
14 1. Core tools:
15 ${CORE_TOOLS}
17 2. Dev tools:
18 ${DEV_TOOLS}
20 3. Extras:
21 ${EXTRA_TOOLS}
23 START_EOT
25 echo "Installing core tools"
26 echo "====================="
27 echo
29 pkgin install ${CORE_TOOLS}
31 echo
32 echo "Installing default development tools"
33 echo "===================================="
34 echo
36 pkgin install ${DEV_TOOLS}
38 echo
39 echo "Installing extras"
40 echo "================="
41 echo
43 pkgin install ${EXTRA_TOOLS}