18 lines
501 B
Ruby
18 lines
501 B
Ruby
class HgFastExport < Formula
|
|
desc "Fast Mercurial to Git converter"
|
|
homepage "http://repo.or.cz/w/fast-export.git"
|
|
url "https://github.com/frej/fast-export/archive/v180317.tar.gz"
|
|
sha256 "e691e5afde8fe527a92abaa259ee3c14f5e953cfbfcd31ab53fa0bc4269f2f8d"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
bin.install "hg-fast-export.py", "hg-fast-export.sh",
|
|
"hg-reset.py", "hg-reset.sh",
|
|
"hg2git.py"
|
|
end
|
|
|
|
test do
|
|
system bin/"hg-fast-export.sh", "--help"
|
|
end
|
|
end
|