diff options
| author | Brett Koonce | 2014-06-23 23:59:10 -0700 |
|---|---|---|
| committer | Brett Koonce | 2014-06-25 09:49:28 -0700 |
| commit | 36aac9070f21c8d981e9b250f4c322ef1e228b7e (patch) | |
| tree | da063534b1cedf3ccc3a5d7ed23db9685e24a618 /Library/Formula | |
| parent | 63397013616643c6e2d0142307bf49cd2d766689 (diff) | |
| download | homebrew-36aac9070f21c8d981e9b250f4c322ef1e228b7e.tar.bz2 | |
vimpc 0.09.1
Closes #30401.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/vimpc.rb | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/Library/Formula/vimpc.rb b/Library/Formula/vimpc.rb index 5be7335a3..49949652e 100644 --- a/Library/Formula/vimpc.rb +++ b/Library/Formula/vimpc.rb @@ -1,21 +1,23 @@ -require 'formula' +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' + homepage "http://sourceforge.net/projects/vimpc/" + url "https://downloads.sourceforge.net/project/vimpc/Release%200.09.1/vimpc-0.09.1.tar.gz" + sha1 "b4e9790eaf0a25035ba32c2c98993fd6900a2c42" head do - url 'https://github.com/boysetsfrog/vimpc.git' + 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' + depends_on "pkg-config" => :build + depends_on "boost" => :build unless MacOS.version >= :mavericks + depends_on "taglib" + depends_on "libmpdclient" + depends_on "pcre" def install system "./autogen.sh" if build.head? |
