homebrew-core/Formula/ushare.rb

42 lines
1.3 KiB
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Ushare < Formula
homepage 'http://ushare.geexbox.org/'
2012-03-11 23:27:04 +00:00
url 'http://ushare.geexbox.org/releases/ushare-1.1a.tar.bz2'
2012-06-12 16:55:32 +00:00
sha1 '1539e83cde5d80f433d262d971f5fe78486c9375'
2012-06-12 16:55:32 +00:00
depends_on 'pkg-config' => :build
depends_on 'gettext'
depends_on 'libupnp'
depends_on 'libdlna'
2012-03-11 23:27:04 +00:00
# Correct "OPTFLAGS" to "CFLAGS"
def patches
2012-06-12 16:55:32 +00:00
{ :p0 =>
"https://trac.macports.org/export/89267/trunk/dports/net/ushare/files/patch-configure.diff"
}
end
fails_with :clang do
cause "clang removes inline functions, causing a link error:\n" +
"\"_display_headers\", referenced from: _parse_command_line in cfgparser.o"
end
def install
2012-03-11 23:27:04 +00:00
# Need to explicitly add intl and gettext here.
2011-03-29 19:33:19 +00:00
gettext = Formula.factory("gettext")
ENV.append 'CFLAGS', "-I#{gettext.include}"
2012-06-12 16:55:32 +00:00
ENV.append 'LDFLAGS', "-lintl"
inreplace 'configure', /config.h/, 'src/config.h'
system "./configure", "--disable-debug",
"--prefix=#{prefix}",
"--enable-dlna",
"--with-libupnp-dir=#{HOMEBREW_PREFIX}",
"--with-libdlna-dir=#{HOMEBREW_PREFIX}",
"--disable-strip"
system "make install"
man1.install "src/ushare.1"
end
end