homebrew-core/Formula/libmpd.rb

29 lines
789 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Libmpd < Formula
homepage 'http://gmpc.wikia.com/wiki/Gnome_Music_Player_Client'
url 'http://www.musicpd.org/download/libmpd/11.8.17/libmpd-11.8.17.tar.gz'
sha1 'df129f15061662a6fec1b2ce19f9dbc8b7a7d1ba'
2014-07-03 19:34:35 +00:00
bottle do
cellar :any
2014-10-20 08:39:11 +00:00
revision 1
sha1 "5a352271b7ae233617fe2ce48c0fc269e3f51cbc" => :yosemite
sha1 "6ebf0308d867a69916c532ada5633172c120e49e" => :mavericks
sha1 "1acdd0b195f4bb35f8d35098c54c5007396b7df8" => :mountain_lion
2014-07-03 19:34:35 +00:00
end
2012-08-10 05:14:18 +00:00
option :universal
depends_on 'pkg-config' => :build
depends_on 'gettext'
depends_on 'glib'
def install
2012-08-10 05:14:18 +00:00
ENV.universal_binary if build.universal?
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end