libdiscid 0.2.2

Closes Homebrew/homebrew#15169.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Sean Goller 2012-09-27 15:44:30 -07:00 committed by Adam Vandenberg
parent f62a4c54de
commit 6a71149d42
1 changed files with 14 additions and 0 deletions

14
Formula/libdiscid.rb Normal file
View File

@ -0,0 +1,14 @@
require 'formula'
class Libdiscid < Formula
homepage 'http://musicbrainz.org/doc/libdiscid'
url 'http://users.musicbrainz.org/~matt/libdiscid-0.2.2.tar.gz'
sha1 '103ead94eeb8bea04ad92ab15ed6832be9b3fad9'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end