diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/libdvdnav.rb | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/Library/Formula/libdvdnav.rb b/Library/Formula/libdvdnav.rb index 6e5904e84..77b901df3 100644 --- a/Library/Formula/libdvdnav.rb +++ b/Library/Formula/libdvdnav.rb @@ -7,15 +7,14 @@ class Libdvdnav < Formula head 'git://git.videolan.org/libdvdnav.git' - depends_on 'libdvdread' - - depends_on :autoconf - depends_on :automake - depends_on :libtool + depends_on "pkg-config" => :build + depends_on "autoconf" => :build + depends_on "automake" => :build + depends_on "libtool" => :build + depends_on "libdvdread" def install - system "./autogen.sh", "--disable-debug", "--disable-dependency-tracking", - "--prefix=#{prefix}" + system "./autogen.sh", "--disable-dependency-tracking", "--prefix=#{prefix}" system "make install" end end |
