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

class Submarine < Formula
  homepage 'https://github.com/rastersoft/submarine'
  url 'https://github.com/rastersoft/submarine/archive/0.1.4.tar.gz'
  sha1 '9ecbdfd25c299839a55ec7878b585525b03f2e8b'
  head 'https://github.com/rastersoft/submarine.git'

  depends_on "pkg-config" => :build
  depends_on "autoconf" => :build
  depends_on "automake" => :build
  depends_on "libtool" => :build
  depends_on "vala" => :build
  depends_on "glib"
  depends_on "libgee"
  depends_on "libsoup"
  depends_on "libarchive"


  def install
    # Because configure is looking for libgee-0.6 which provided
    # pkg-config viled numbered 1.0.
    #
    # See https://github.com/rastersoft/submarine/pull/1
    inreplace 'configure.ac', 'gee-1.0', 'gee-0.8'
    system "./autogen.sh"
    system "./configure", "--disable-dependency-tracking",
                          "--disable-silent-rules",
                          "--prefix=#{prefix}"
    system "make", "install"
  end

  test do
    system "#{bin}/submarine", "--help"
  end
end