aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/lesstif.rb
blob: f1ad56232fd005844c2c020d320bba1a9ce83f49 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
require 'formula'

class Lesstif < Formula
  homepage 'http://lesstif.sourceforge.net'
  url 'https://downloads.sourceforge.net/project/lesstif/lesstif/0.95.2/lesstif-0.95.2.tar.bz2'
  sha1 'b894e544d529a235a6a665d48ca94a465f44a4e5'

  bottle do
    sha1 "105a7e9c81a552006d43deb588dd4bb3790a1ab5" => :mavericks
    sha1 "7d6b3202cbc46cb5f56df256a381af94fa09b4ff" => :mountain_lion
    sha1 "749a426934204765d0625f41763d75462e21ec0d" => :lion
  end

  depends_on :x11
  depends_on "freetype"

  def install
    # LessTif does naughty, naughty, things by assuming we want autoconf macros
    # to live in wherever `aclocal --print-ac-dir` says they should.
    # Shame on you LessTif! *wags finger*
    inreplace 'configure', "`aclocal --print-ac-dir`", "#{share}/aclocal"

    # 'sed' fails if LANG=en_US.UTF-8 as is often the case on Macs.
    # The configure script finds our superenv sed wrapper, sets SED,
    # but then doesn't use that variable.
    ENV['LANG'] = 'C'

    system "./configure", "--prefix=#{prefix}",
                          "--disable-debug",
                          "--enable-production",
                          "--disable-dependency-tracking",
                          "--enable-shared",
                          "--enable-static"

    system "make"

    # LessTif won't install in parallel 'cause several parts of the Makefile will
    # try to make the same directory and `mkdir` will fail.
    ENV.deparallelize
    system "make install"
  end
end