blob: 18b1e39e8e6ba09269ec45654247470c3d6e5827 (
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 Recode < Formula
  homepage 'http://recode.progiciels-bpi.ca/index.html'
  url 'https://github.com/pinard/Recode/archive/v3.7-beta2.tar.gz'
  sha1 'a10c90009ad3e1743632ada2a302c824edc08eaf'
  version '3.7-beta2'
  depends_on "gettext"
  depends_on "libtool" => :build
  def install
    # Yep, missing symbol errors without these
    ENV.append 'LDFLAGS', '-liconv'
    ENV.append 'LDFLAGS', '-lintl'
    cp Dir["#{Formula["libtool"].opt_share}/libtool/*/config.{guess,sub}"], buildpath
    system "./configure", "--disable-debug",
                          "--disable-dependency-tracking",
                          "--without-included-gettext",
                          "--prefix=#{prefix}",
                          "--infodir=#{info}",
                          "--mandir=#{man}"
    system "make install"
  end
end
 |