You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
424 B
16 lines
424 B
require "formula"
|
|
|
|
class Mop < Formula
|
|
homepage "https://github.com/michaeldv/mop"
|
|
head "https://github.com/michaeldv/mop.git"
|
|
url "https://github.com/michaeldv/mop/archive/v0.1.0.tar.gz"
|
|
sha1 "b3bd5b529430da22bfa1beeca435a25e72513e27"
|
|
|
|
depends_on "go" => :build
|
|
|
|
def install
|
|
system "go", "get", "github.com/michaeldv/termbox-go"
|
|
system "go build cmd/mop.go"
|
|
bin.install "mop"
|
|
end
|
|
end
|
|
|