aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorXu Cheng2015-01-01 14:23:52 +0800
committerMike McQuaid2015-01-01 14:25:17 +0000
commit0a3050674011631de3f6b33a1bdb4caf7d13b46d (patch)
treeba5bb4d6fee5c94a4ad587a69063da33f90782fb /Library
parent3a02c8b6c30a52309cdafdc011fe2fa724970704 (diff)
downloadhomebrew-0a3050674011631de3f6b33a1bdb4caf7d13b46d.tar.bz2
libvo-aacenc: modernize
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/libvo-aacenc.rb10
1 files changed, 4 insertions, 6 deletions
diff --git a/Library/Formula/libvo-aacenc.rb b/Library/Formula/libvo-aacenc.rb
index 90d7d7fec..104750ab6 100644
--- a/Library/Formula/libvo-aacenc.rb
+++ b/Library/Formula/libvo-aacenc.rb
@@ -1,9 +1,7 @@
-require 'formula'
-
class LibvoAacenc < Formula
- homepage 'http://opencore-amr.sourceforge.net/'
- url 'https://downloads.sourceforge.net/project/opencore-amr/vo-aacenc/vo-aacenc-0.1.2.tar.gz'
- sha1 'ac56325c05eba4c4f8fe2c5443121753f4d70255'
+ homepage "http://opencore-amr.sourceforge.net/"
+ url "https://downloads.sourceforge.net/project/opencore-amr/vo-aacenc/vo-aacenc-0.1.2.tar.gz"
+ sha1 "ac56325c05eba4c4f8fe2c5443121753f4d70255"
bottle do
cellar :any
@@ -14,6 +12,6 @@ class LibvoAacenc < Formula
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
- system "make install"
+ system "make", "install"
end
end