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

22 lines
786 B
Ruby

class IcalBuddy < Formula
desc "Get events and tasks from the OS X calendar database"
homepage "http://hasseg.org/icalBuddy/"
head "https://github.com/ali-rantakari/icalBuddy.git"
url "https://github.com/ali-rantakari/icalBuddy/archive/v1.8.10.tar.gz"
sha256 "3fb50cffd305ed6ac0ebb479e04ff254074ee5e4b1a1c279bd24c3cc56bcccb0"
bottle do
cellar :any
sha1 "23aa4a5dc5375edfa78f0d61c6748dd71e388330" => :mavericks
sha1 "0c95d85ea39d4c9d288e1a938e1b5f5e791c29cd" => :mountain_lion
sha1 "a856530a9a30a218b2570b3aafb9610ab4297fb8" => :lion
end
def install
args = %W[icalBuddy icalBuddy.1 icalBuddyLocalization.1
icalBuddyConfig.1 COMPILER=#{ENV.cc}]
system "make", *args
bin.install "icalBuddy"
man1.install Dir["*.1"]
end
end