aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2009-12-04 17:59:30 -0800
committerMax Howell2009-12-21 18:41:14 +0000
commitc23a0752938c0d42bcc04a207de70b5f51f938b4 (patch)
treefa52eed5f29b5843e5b168ae3b3c9318cccf7eaf /Library
parent0e6c1924541a3237daefeab52f8c6edd6f46f7e2 (diff)
downloadhomebrew-c23a0752938c0d42bcc04a207de70b5f51f938b4.tar.bz2
Add mt-daapd aka Firefly Media Server.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/mt-daapd.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/mt-daapd.rb b/Library/Formula/mt-daapd.rb
new file mode 100644
index 000000000..b116809a3
--- /dev/null
+++ b/Library/Formula/mt-daapd.rb
@@ -0,0 +1,17 @@
+require 'formula'
+
+class MtDaapd <Formula
+ url 'http://downloads.sourceforge.net/project/mt-daapd/mt-daapd/0.2.4.2/mt-daapd-0.2.4.2.tar.gz'
+ homepage 'http://www.fireflymediaserver.org/'
+ md5 '67bef9fb14d487693b0dfb792c3f1b05'
+
+ aka 'firefly'
+
+ depends_on 'gdbm'
+ depends_on 'libid3tag'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "make install"
+ end
+end