homebrew-core/Formula/ical-buddy.rb
Misty De Meo 4995e0fb97 ical-buddy: build from source
The official tarballs don't contain any source code, just a prebuilt
i386 binary. We didn't notice since make exits 0 when the requested
targets exist even if there's no makefile.

Fixes mistydemeo/tigerbrew#41.
2013-05-18 16:58:38 -05:00

18 lines
494 B
Ruby

require 'formula'
class IcalBuddy < Formula
# NOTE: the official tarball doesn't actually contain any source,
# just a prebuilt i386 binary
homepage 'http://hasseg.org/icalBuddy/'
url 'http://hasseg.org/git-public/icalBuddy.git',
:tag => 'v1.8.8'
version '1.8.8'
head 'http://hasseg.org/git-public/icalBuddy.git'
def install
system "make icalBuddy icalBuddy.1 icalBuddyLocalization.1 icalBuddyConfig.1"
bin.install "icalBuddy"
man1.install Dir["*.1"]
end
end