aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/squirrel.rb
blob: dafdb03abff6ac6d14127507f7b1dcae3a2f1b91 (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 Squirrel < Formula
  homepage 'http://www.squirrel-lang.org'
  url 'https://downloads.sourceforge.net/project/squirrel/squirrel3/squirrel%203.0.7%20stable/squirrel_3_0_7_stable.tar.gz'
  version '3.0.7'
  sha1 '5ae3f669677ac5f5d663ec070d42ee68980e1911'

  bottle do
    cellar :any
    sha1 "24ac32cfb018ba9ed7a68b1fd7314de307e6b60e" => :yosemite
    sha1 "7a4e09d82eaf35d16962df098d9342c3f1a95b81" => :mavericks
    sha1 "8d3ec975ba7dde650f11985df813ce49daa6f830" => :mountain_lion
  end

  def install
    system "make"
    prefix.install %w[bin include lib]
    doc.install Dir['doc/*.pdf']
    doc.install %w[etc samples]
    # See: https://github.com/Homebrew/homebrew/pull/9977
    (lib+'pkgconfig/libsquirrel.pc').write pc_file
  end

  def pc_file; <<-EOS.undent
    prefix=#{opt_prefix}
    exec_prefix=${prefix}
    libdir=/${exec_prefix}/lib
    includedir=/${prefix}/include
    bindir=/${prefix}/bin
    ldflags=  -L/${prefix}/lib

    Name: libsquirrel
    Description: squirrel library
    Version: #{version}

    Requires:
    Libs: -L${libdir} -lsquirrel -lsqstdlib
    Cflags: -I${includedir}
    EOS
  end
end