diff options
| author | Juha laukkanen | 2015-01-27 11:22:59 -0800 |
|---|---|---|
| committer | Mike McQuaid | 2015-01-28 14:21:38 +0000 |
| commit | 1db195f1a40e82427eb32ca02f497bebf034585f (patch) | |
| tree | 92f86db0e048ed9bba44a9f01afc3f74ef25880a /Library/Formula | |
| parent | fdae6bc3012644e018cac934531793b2565d9394 (diff) | |
| download | homebrew-1db195f1a40e82427eb32ca02f497bebf034585f.tar.bz2 | |
sound-touch: add universal option.
Closes #36313.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/sound-touch.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Library/Formula/sound-touch.rb b/Library/Formula/sound-touch.rb index b37a91af5..51d6b8481 100644 --- a/Library/Formula/sound-touch.rb +++ b/Library/Formula/sound-touch.rb @@ -13,6 +13,7 @@ class SoundTouch < Formula end option "with-integer-samples", "Build using integer samples? (default is float)" + option :universal depends_on "autoconf" => :build depends_on "automake" => :build @@ -25,6 +26,8 @@ class SoundTouch < Formula "--prefix=#{prefix}"] args << "--enable-integer-samples" if build.with? "integer-samples" + ENV.universal_binary if build.universal? + system "./configure",*args system "make", "install" end |
