aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2013-01-28 21:37:01 -0800
committerAdam Vandenberg2013-01-28 21:40:41 -0800
commit434f6ed136a406fed2e462e0abf49e1b5f21e296 (patch)
treea8ae162ab6d8ce1d00960a607290ede7312be422 /Library
parent29e61ab4be6b7947c7c52e279963b9dfbbc42112 (diff)
downloadhomebrew-434f6ed136a406fed2e462e0abf49e1b5f21e296.tar.bz2
libcddb: style nits
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/libcddb.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/Library/Formula/libcddb.rb b/Library/Formula/libcddb.rb
index 2db435cab..75c35de23 100644
--- a/Library/Formula/libcddb.rb
+++ b/Library/Formula/libcddb.rb
@@ -1,15 +1,16 @@
require 'formula'
class Libcddb < Formula
+ homepage 'http://libcddb.sourceforge.net/'
url 'http://downloads.sourceforge.net/libcddb/libcddb-1.3.2.tar.bz2'
sha1 '2a7855918689692ff5ca3316d078a859d51959ce'
- homepage 'http://libcddb.sourceforge.net/'
depends_on 'pkg-config' => :build
depends_on 'libcdio'
def install
- system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
+ system "./configure", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
system "make install"
end
end