blob: 888d0d0d498c3c9b95e6a094e9c7aa08b24605e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
  | 
require 'formula'
class GitSvnAbandon < Formula
  homepage 'https://github.com/nothingmuch/git-svn-abandon'
  head 'https://github.com/nothingmuch/git-svn-abandon.git'
  # Pending request for stable tab:
  # https://github.com/nothingmuch/git-svn-abandon/issues/2
  def install
    bin.install Dir['git-svn-abandon-*']
  end
end
  |