blob: e10012bfb85c332e7ac80d8382e95a754958e861 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
  | 
require 'formula'
# NOTE: Using git-repo instead of zip package as the latter does not
#       include source files.
class IcalBuddy < Formula
  homepage 'http://hasseg.org/icalBuddy/'
  url 'http://hasseg.org/git-public/icalBuddy.git', :tag => 'v1.8.0',
    :using => :git
  version '1.8.0'
  head 'http://hasseg.org/git-public/icalBuddy.git', :using => :git
  def install
    arch = MacOS.prefer_64_bit? ? "x86_64" : "i386"
    sdk = MACOS_VERSION
    inreplace "Makefile" do |s|
      s.gsub! "-arch i386 -arch ppc $(ARCH_64BIT)", "-arch #{arch}"
      s.gsub! "-mmacosx-version-min=10.5", "-mmacosx-version-min=#{sdk}"
    end
    system "make icalBuddy icalBuddy.1 icalBuddyLocalization.1 icalBuddyConfig.1"
    bin.install "icalBuddy"
    man1.install Dir["*.1"]
  end
end
  |