homebrew-core/Formula/dvorak7min.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

21 lines
721 B
Ruby

class Dvorak7min < Formula
desc "Dvorak (simplified keyboard layout) typing tutor"
homepage "http://dvorak7min.sourcearchive.com/"
url "http://ftp.de.debian.org/debian/pool/main/d/dvorak7min/dvorak7min_1.6.1+repack.orig.tar.gz"
sha256 "4cdef8e4c8c74c28dacd185d1062bfa752a58447772627aded9ac0c87a3b8797"
version "1.6.1"
bottle do
cellar :any
sha1 "3fa9330cc362cdf2e1141fdc334087c98fe4bce1" => :yosemite
sha1 "245f20ef29453e0a269beee466b1d18b23ddcfc4" => :mavericks
sha1 "f4654d6ad3c11702c98b9343fbed51d6a9eba401" => :mountain_lion
end
def install
# Remove pre-built ELF binary first
system "make", "clean"
system "make"
system "make", "INSTALL=#{bin}", "install"
end
end