mirror of
https://github.com/iwata/git-now.git
synced 2026-09-10 15:36:22 -04:00
18 lines
392 B
Ruby
18 lines
392 B
Ruby
require 'formula'
|
|
|
|
class GitNow < Formula
|
|
url 'https://github.com/iwata/git-now.git', :tag => 'v0.0.5.1'
|
|
version '0.0.5.1'
|
|
head 'https://github.com/iwata/git-now.git', :branch => 'develop'
|
|
homepage 'https://github.com/iwata/git-now'
|
|
|
|
# for longopt
|
|
depends_on 'gnu-getopt'
|
|
|
|
def install
|
|
system "make", "prefix=#{prefix}", "install"
|
|
system "brew ln gnu-getopt"
|
|
end
|
|
|
|
end
|