blob: 5be7335a38bdc8305703d0db16803d4510ce5ec9 (
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
  | 
require 'formula'
class Vimpc < Formula
  homepage 'http://sourceforge.net/projects/vimpc/'
  url 'https://downloads.sourceforge.net/project/vimpc/Release%200.08.1/vimpc-0.08.1.tar.gz'
  sha1 '2620e7148b4cac7472952690e5b5df199188d3c8'
  head do
    url 'https://github.com/boysetsfrog/vimpc.git'
    depends_on "autoconf" => :build
    depends_on "automake" => :build
    depends_on "libtool" => :build
  end
  depends_on 'pkg-config' => :build
  depends_on 'libmpdclient'
  depends_on 'pcre'
  def install
    system "./autogen.sh" if build.head?
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
  test do
    system "#{bin}/vimpc", "-v"
  end
end
  |