diff options
| author | Adam Vandenberg | 2009-12-04 17:59:30 -0800 |
|---|---|---|
| committer | Max Howell | 2009-12-21 18:41:14 +0000 |
| commit | c23a0752938c0d42bcc04a207de70b5f51f938b4 (patch) | |
| tree | fa52eed5f29b5843e5b168ae3b3c9318cccf7eaf | |
| parent | 0e6c1924541a3237daefeab52f8c6edd6f46f7e2 (diff) | |
| download | homebrew-c23a0752938c0d42bcc04a207de70b5f51f938b4.tar.bz2 | |
Add mt-daapd aka Firefly Media Server.
| -rw-r--r-- | Library/Formula/mt-daapd.rb | 17 |
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 |
