aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2014-05-12 16:27:42 -0500
committerJack Nagel2014-05-12 16:28:14 -0500
commitefd4016bde67ead3172ad4a1b83e00da4c2c1d05 (patch)
tree7e7f26bb5cbd81db1830823c6ad6baa775757dcc /Library
parent83abeed59c4019e977a9089ec9bdc42c15ce688e (diff)
downloadhomebrew-efd4016bde67ead3172ad4a1b83e00da4c2c1d05.tar.bz2
libdvdnav: add pkg-config dep
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/libdvdnav.rb13
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