Skip to content

humankindof/Homebrew

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

81 Commits
 
 
 
 

Repository files navigation

Homebrew Install with Brewpack.

Homebrew install with brewpack packages.yml file.
Used for some commonly used brew and cask packages as well as web dev packages.
This guide is specific to macOS 10.14

Installation

Brewpacks

Inherit premade Brewpacks

  • Usable examples:

    brewpack install --repo humankindof/Homebrew

    brewpack install --repo rouanw/packages

Create Your own packages.yml file

Create your own local packages.yml file. When you run this command, the currently installed packages will be added to the file for you.

  • Create packages.yml

    brewpack init

asdf Considerations

asdf is installed with the humankinfof/Homebrew/packages.yml package. To make it work, You have to add Homebrew Shell Completion for Bash.

HOMEBREW_PREFIX=$(brew --prefix)
if type brew &>/dev/null; then
  for COMPLETION in "$HOMEBREW_PREFIX"/etc/bash_completion.d/*
  do
    [[ -f $COMPLETION ]] && source "$COMPLETION"
  done
  if [[ -f ${HOMEBREW_PREFIX}/etc/profile.d/bash_completion.sh ]];
  then
    source "${HOMEBREW_PREFIX}/etc/profile.d/bash_completion.sh"
  fi
fi

. $(brew --prefix asdf)/asdf.sh

About

brew installs

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published