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/v170101.tar.gz"
|
|
sha256 "15124825f8f18bbae874f155ea8168d54775f906d50ca8dc59efc86eeb491615"
|
|
|
|
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
|