95884bae22
Closes Homebrew/homebrew#42407. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
27 lines
846 B
Ruby
27 lines
846 B
Ruby
class Libmpd < Formula
|
|
desc "Higher level access to MPD functions"
|
|
homepage "https://gmpc.wikia.com/wiki/Gnome_Music_Player_Client"
|
|
url "http://www.musicpd.org/download/libmpd/11.8.17/libmpd-11.8.17.tar.gz"
|
|
sha256 "fe20326b0d10641f71c4673fae637bf9222a96e1712f71f170fca2fc34bf7a83"
|
|
|
|
bottle do
|
|
cellar :any
|
|
revision 1
|
|
sha1 "5a352271b7ae233617fe2ce48c0fc269e3f51cbc" => :yosemite
|
|
sha1 "6ebf0308d867a69916c532ada5633172c120e49e" => :mavericks
|
|
sha1 "1acdd0b195f4bb35f8d35098c54c5007396b7df8" => :mountain_lion
|
|
end
|
|
|
|
option :universal
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "gettext"
|
|
depends_on "glib"
|
|
|
|
def install
|
|
ENV.universal_binary if build.universal?
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
end
|