18 lines
724 B
Ruby
18 lines
724 B
Ruby
class Aoeui < Formula
|
|
desc "Lightweight text editor optimized for Dvorak and QWERTY keyboards"
|
|
homepage "https://aoeui.googlecode.com/"
|
|
url "https://aoeui.googlecode.com/files/aoeui-1.6.tgz"
|
|
sha256 "0655c3ca945b75b1204c5f25722ac0a07e89dd44bbf33aca068e918e9ef2a825"
|
|
head "http://aoeui.googlecode.com/svn/trunk/"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "62a04ac0fd27e76f4f77da95e7d5aaf75488765f98b02574ae7dff0508cd9f13" => :el_capitan
|
|
sha256 "19f622466c20ad4ddff2fc97ac186e189d5a8bb02dd405ed2a93c5d13a88b1f4" => :yosemite
|
|
sha256 "a3ac3238356624a12b20df52c98d2bc52e0d785745e393928fc4c629212d1406" => :mavericks
|
|
end
|
|
|
|
def install
|
|
system "make", "INST_DIR=#{prefix}", "install"
|
|
end
|
|
end
|