diff options
| author | Steven Yi | 2013-05-12 19:46:25 +0200 | 
|---|---|---|
| committer | Adam Vandenberg | 2013-05-12 16:58:50 -0700 | 
| commit | 7185491097119c5e55910edebaa3aa7b0066799f (patch) | |
| tree | 2d7401c582a507dc15ae861187d160e402e18468 /Library/Formula/libvorbis.rb | |
| parent | 3113685a92f32999a0765085e485d8400b33af13 (diff) | |
| download | homebrew-7185491097119c5e55910edebaa3aa7b0066799f.tar.bz2 | |
libvorbis: add --universal
Closes #19760.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/libvorbis.rb')
| -rw-r--r-- | Library/Formula/libvorbis.rb | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/Library/Formula/libvorbis.rb b/Library/Formula/libvorbis.rb index d38c0ca4d..835a0c30f 100644 --- a/Library/Formula/libvorbis.rb +++ b/Library/Formula/libvorbis.rb @@ -7,6 +7,8 @@ class Libvorbis < Formula    head 'http://svn.xiph.org/trunk/vorbis' +  option :universal +    depends_on 'xz' => :build    depends_on 'pkg-config' => :build    depends_on 'libogg' @@ -18,6 +20,8 @@ class Libvorbis < Formula    end    def install +    ENV.universal_binary if build.universal? +      system "./autogen.sh" if build.head?      system "./configure", "--disable-dependency-tracking",                            "--prefix=#{prefix}"  | 
