4995e0fb97
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.
18 lines
494 B
Ruby
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
|