89d1e1a6a5
Closes Homebrew/homebrew#14327. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
13 lines
346 B
Ruby
13 lines
346 B
Ruby
require 'formula'
|
|
|
|
class Mongoose < Formula
|
|
homepage 'https://github.com/valenok/mongoose'
|
|
url 'https://github.com/valenok/mongoose/tarball/3.2'
|
|
sha1 'c825fad84061e497d1d2fb711b94c6fdf5c1398c'
|
|
|
|
def install
|
|
system "make", "mac", "CC=#{ENV.cc}", "CFLAGS=#{ENV.cflags}"
|
|
bin.install "mongoose"
|
|
man1.install "mongoose.1"
|
|
end
|
|
end
|