ad4b60c608
Tarballs have been removed from SourceForge and are now hosted directly by musicpd.org. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
20 lines
538 B
Ruby
20 lines
538 B
Ruby
require 'formula'
|
|
|
|
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'
|
|
|
|
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
|