aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/freealut.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2010-10-21 07:54:17 -0700
committerAdam Vandenberg2010-10-21 07:54:17 -0700
commite31c3b430d9014f9617b58bef283c014b9403f6e (patch)
tree94ac71f553f929ad012c4bf57eb861ce08eeb08a /Library/Formula/freealut.rb
parentae9b3ef59f406c8330c2621e5355c75694723f35 (diff)
downloadhomebrew-e31c3b430d9014f9617b58bef283c014b9403f6e.tar.bz2
Homebrew style is to indent w/ 2 spaces, not tabs
Diffstat (limited to 'Library/Formula/freealut.rb')
-rw-r--r--Library/Formula/freealut.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/Library/Formula/freealut.rb b/Library/Formula/freealut.rb
index bf1f400ba..f797ace62 100644
--- a/Library/Formula/freealut.rb
+++ b/Library/Formula/freealut.rb
@@ -5,14 +5,14 @@ class Freealut <Formula
homepage 'http://connect.creativelabs.com/openal/Documentation/The%20OpenAL%20Utility%20Toolkit.htm'
md5 'e089b28a0267faabdb6c079ee173664a'
- def patches
- # Adds the OpenAL frameworks to the library list so linking succeeds
- DATA
- end
+ # Adds the OpenAL frameworks to the library list so linking succeeds
+ def patches; DATA; end
def install
- system "./autogen.sh"
- system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}", "--mandir=#{man}"
+ system "./autogen.sh"
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}",
+ "--mandir=#{man}"
system "make install"
end
end