7a4dabfc1a
This restores 1.8 hash rockets because they look nicer with e.g. `depends_on :foo => :bar`
65 lines
2.1 KiB
Ruby
65 lines
2.1 KiB
Ruby
class Libming < Formula
|
|
desc "C library for generating Macromedia Flash files"
|
|
homepage "http://www.libming.org"
|
|
url "https://downloads.sourceforge.net/project/ming/Releases/ming-0.4.4.tar.bz2"
|
|
sha256 "40e09d781741ac961338ed8dec7ba2ed06217de9da44dd67af6b881b95d2af7e"
|
|
revision 1
|
|
|
|
bottle do
|
|
cellar :any
|
|
revision 2
|
|
sha256 "aeead83fb25e5e53f185a5bf3995503b01045abc1f6593246a1622839be7e86c" => :el_capitan
|
|
sha256 "18eeaa97826666b7a0e056f5a954f14b849da4d5e061454cbeeea8405ac71a58" => :yosemite
|
|
sha256 "de61c35147f75601b49728366cf0baa958429c50e2a26f1f1bb7eaf1d697259e" => :mavericks
|
|
sha256 "fe516b67284f8de7a34ed1ac3dc68ee46d0bdb3593db16ba5f62b9e228336144" => :mountain_lion
|
|
end
|
|
|
|
option "perl", "Build the perl extension"
|
|
option "php", "Build the php extension"
|
|
|
|
depends_on "libpng"
|
|
depends_on "freetype"
|
|
depends_on :python => :optional
|
|
depends_on "giflib" => :optional
|
|
|
|
# Helps us find libgif.dylib, not libungif.dylib which is retired.
|
|
patch :DATA
|
|
|
|
def install
|
|
# TODO: Libming also includes scripting front-ends for Perl, Python, TCL
|
|
# and PHP. These are disabled by default. Figure out what it would take to
|
|
# enable them.
|
|
# - python works if we tell it to use our giflib not ungif.
|
|
# - perl works without any change
|
|
# - php builds, but tries to install to /usr/lib/php/extensions
|
|
# - tcl does not work, might need an older tcl, missing symbols.
|
|
args = %W[
|
|
--disable-dependency-tracking
|
|
--disable-silent-rules
|
|
--prefix=#{prefix}
|
|
]
|
|
args << "--enable-python" if build.with? "python"
|
|
args << "--enable-perl" if build.with? "perl"
|
|
args << "--enable-php" if build.with? "php"
|
|
|
|
system "./configure", *args
|
|
system "make"
|
|
|
|
# Won't install in parallel for some reason.
|
|
ENV.deparallelize
|
|
system "make", "install"
|
|
end
|
|
end
|
|
|
|
__END__
|
|
--- a/py_ext/setup.py.in 2011-10-25 23:33:18.000000000 -0700
|
|
+++ b/py_ext/setup.py.in 2012-09-04 13:39:52.000000000 -0700
|
|
@@ -19,7 +19,7 @@
|
|
mylibs.append('png')
|
|
|
|
if "@GIFLIB@":
|
|
- mylibs.append("ungif")
|
|
+ mylibs.append("gif")
|
|
|
|
|
|
setup(name = "mingc", version = "@MING_VERSION@",
|