tegh 0.3.1
Closes Homebrew/homebrew#21068. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
a904e67ab8
commit
e8fc2d71a8
1 changed files with 17 additions and 0 deletions
17
Formula/tegh.rb
Normal file
17
Formula/tegh.rb
Normal file
|
@ -0,0 +1,17 @@
|
|||
require 'formula'
|
||||
|
||||
class Tegh < Formula
|
||||
homepage 'https://github.com/D1plo1d/tegh'
|
||||
head 'https://github.com/D1plo1d/tegh.git', :branch => 'develop'
|
||||
url 'https://s3.amazonaws.com/tegh_binaries/0.3.1/tegh-0.3.1-brew.tar.gz'
|
||||
sha1 '7061165db148a27d229563e340d6c691b4fd92a8'
|
||||
|
||||
depends_on 'node'
|
||||
|
||||
def install
|
||||
rm "bin/tegh.bat"
|
||||
system "npm", "install" if build.head?
|
||||
libexec.install Dir['*']
|
||||
bin.install_symlink Dir["#{libexec}/bin/*"]
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue