aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libvoikko.rb
blob: 7af1617d05491ca38e1d3bd6bcc5f2b93d28be94 (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
require 'formula'

class Libvoikko < Formula
  homepage 'http://voikko.puimula.org/'
  url 'http://www.puimula.org/voikko-sources/libvoikko/libvoikko-3.7.tar.gz'
  sha1 '27ad3f72316d3878a0ed7b94a9e855bff66cb81b'

  depends_on 'pkg-config' => :build
  depends_on 'suomi-malaga-voikko'

  def patches
    # Fixes compilation issues on OS X 10.9. Both merged upstream:
    # https://github.com/voikko/corevoikko/pull/5
    # https://github.com/voikko/corevoikko/pull/6
    # Note that the upstream commits don't apply cleanly to stable
    "https://gist.github.com/osimola/7724611/raw/2dcfddaf4bf7c7e9d940edb1b982d5b5e39bc378/libvoikko-3.7-mavericks.patch"
  end

  def install
    system "./configure", "--disable-debug",
                          "--disable-dependency-tracking",
                          "--disable-silent-rules",
                          "--prefix=#{prefix}",
                          "--with-dictionary-path=#{HOMEBREW_PREFIX}/lib/voikko"
    system "make", "install"
  end
end