Skip to content

Instantly share code, notes, and snippets.

@evandavey
Created September 17, 2011 12:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save evandavey/1223914 to your computer and use it in GitHub Desktop.
Save evandavey/1223914 to your computer and use it in GitHub Desktop.
Forked Daapd Homebrew formula
require 'formula'
class ForkedDaapd < Formula
url 'http://alioth.debian.org/~jblache/forked-daapd/forked-daapd-0.19.tar.gz'
homepage ''
md5 '53e6f1d6683e3275e7c7698ec923a97e'
depends_on 'antlr'
depends_on 'gettext'
depends_on 'libunistring'
depends_on 'confuse'
depends_on 'ffmpeg'
def install
ENV['ZLIB_LIBS'] = '/usr/lib'
ENV['ZLIB_CFLAGS'] = '-l/usr/lib/libz.dylig -L/usr/lib'
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}", "--enable-itunes", "--sysconfdir=#{prefix}/etc","--localstatedir=#{prefix}/var"#,"--enable-flac","--enable-musepack"
system "make install"
end
end
@tristan-k
Copy link

Did you find a way to install avahi-client on mac os x?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment