blob: e89b206ee6a4ccf448bbf3971c05eb3c6532838f (
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
  | 
require 'formula'
class Zshdb < Formula
  homepage 'https://github.com/rocky/zshdb'
  url 'http://downloads.sourceforge.net/project/bashdb/zshdb/0.08/zshdb-0.08.tar.bz2'
  sha1 '29f860d0130debe6a966ee1e12f2f3046c78897b'
  head do
    url 'https://github.com/rocky/zshdb.git'
    depends_on :automake
  end
  depends_on 'zsh'
  def install
    if build.head?
      system "autoreconf", "-fvi"
      system "autoconf"
    end
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--with-zsh=#{HOMEBREW_PREFIX}/bin/zsh"
    system "make install"
  end
end
  |