11 lines
228 B
Ruby
11 lines
228 B
Ruby
require 'formula'
|
|
|
|
class Migreazy < Formula
|
|
head 'https://github.com/fhwang/migreazy.git'
|
|
homepage 'https://github.com/fhwang/migreazy'
|
|
|
|
def install
|
|
mv 'MIT-LICENSE', 'LICENSE'
|
|
bin.install 'bin/migreazy'
|
|
end
|
|
end
|