homebrew-core/Formula/libdsk.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

19 lines
786 B
Ruby

class Libdsk < Formula
desc "Library for accessing discs and disc image files"
homepage "http://www.seasip.info/Unix/LibDsk/"
url "http://www.seasip.info/Unix/LibDsk/libdsk-1.3.8.tar.gz"
sha256 "1472cb30534e3a1b3ac0c2e7e4a00a9c247955af5d407cb95c25391fb61e45d4"
bottle do
sha256 "5b826726a3146916ec472d350c00656e878b0420d271b4c623d868fd91809637" => :yosemite
sha256 "2992e58a9f040643f6c582057d72d4a8af67d18b0fca6ec605b8d06ecc7fb82b" => :mavericks
sha256 "8b36ee07409e81ea6fe3fa72b43f7b8a025180ffbcf8eade58a48053330b3312" => :mountain_lion
end
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
(share+name+"doc").install Dir["doc/*.{html,txt,pdf}"]
end
end