aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/direnv.rb
blob: 8719e340ed6dfa8baf2dcf5c795fffa2e31d14d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'formula'

class Direnv < Formula
  homepage 'https://github.com/zimbatm/direnv'
  url 'https://github.com/zimbatm/direnv/tarball/v0.1.65'
  md5 'fbcedf4ddd5ae2e2fa1760a4ef4280c6'

  head 'https://github.com/zimbatm/direnv.git'

  def install
    # App and support files live in libexec
    libexec.install Dir['libexec/*']
    # Symlink into bin
    bin.mkpath
    ln_s libexec+'direnv', bin+'direnv'
  end
end