blob: 29dda1fa472201e80d707ae8d31b222e877c8e11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'formula'
class RbenvVars < Formula
homepage 'https://github.com/sstephenson/rbenv-vars'
url 'https://github.com/sstephenson/rbenv-vars/tarball/v1.1.0'
sha1 '40d57e4a1f64ef03efbf6fd5a15ef637d6a5755e'
head 'https://github.com/sstephenson/rbenv-vars.git'
depends_on 'rbenv'
def install
prefix.install Dir['*']
ln_sf opt_prefix, "#{HOMEBREW_PREFIX}/var/lib/rbenv/plugins/#{name}"
end
end
|