aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorRalph Angenendt2010-08-15 19:19:28 +0200
committerAdam Vandenberg2010-08-15 11:38:12 -0700
commit856b923ff627426db804a30a5f5dd2d400512a54 (patch)
tree7b737bb04368b99d77b3563bf825dde875434476 /Library/Formula
parent273d642c99ccf294749c01d3502a9b9d85cf099f (diff)
downloadhomebrew-856b923ff627426db804a30a5f5dd2d400512a54.tar.bz2
cd-discid is a helper program for cddb lookups
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/cd-discid.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/cd-discid.rb b/Library/Formula/cd-discid.rb
new file mode 100644
index 000000000..0fee8c207
--- /dev/null
+++ b/Library/Formula/cd-discid.rb
@@ -0,0 +1,17 @@
+require 'formula'
+
+class CdDiscid <Formula
+ url 'http://linukz.org/download/cd-discid-1.1.tar.gz'
+ homepage 'http://linukz.org/cd-discid.shtml'
+ md5 '04cb368e3f1ce17e656ac6691ca0b687'
+
+ def patches
+ { :p0 =>
+ "http://trac.macports.org/export/70630/trunk/dports/audio/cd-discid/files/patch-cd-discid.c.diff"
+ }
+ end
+
+ def install
+ system "export prefix=#{prefix}; make -e install"
+ end
+end