2011-12-28 04:47:41 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Vimpc < Formula
|
|
|
|
homepage 'http://sourceforge.net/projects/vimpc/'
|
2012-02-10 04:36:23 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/vimpc/Release%200.05/vimpc-0.05.tar.gz'
|
|
|
|
md5 'f96cdc10827ddfbb53318e9ab4bab93b'
|
2011-12-28 04:47:41 +00:00
|
|
|
|
|
|
|
head 'https://github.com/richoH/vimpc.git'
|
|
|
|
|
|
|
|
depends_on 'pkg-config' => :build
|
|
|
|
depends_on 'pcre++'
|
|
|
|
depends_on 'libmpdclient'
|
|
|
|
|
2012-02-28 15:39:22 +00:00
|
|
|
if ARGV.build_head? and MacOS.xcode_version >= "4.3"
|
|
|
|
depends_on "automake" => :build
|
|
|
|
depends_on "libtool" => :build
|
|
|
|
end
|
|
|
|
|
2011-12-28 04:47:41 +00:00
|
|
|
def install
|
|
|
|
if ARGV.build_head?
|
|
|
|
ENV['ACLOCAL_FLAGS'] = "-I #{HOMEBREW_PREFIX}/share/aclocal"
|
|
|
|
system "./autogen.sh"
|
|
|
|
end
|
|
|
|
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
|
|
|
|
def test
|
2012-02-10 04:36:23 +00:00
|
|
|
system "#{bin}/vimpc -v"
|
2011-12-28 04:47:41 +00:00
|
|
|
end
|
|
|
|
end
|