aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mongoose.rb
blob: bd5f87153a212b4c1c941b789ed604d44b37b61c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Mongoose < Formula
  homepage 'https://github.com/valenok/mongoose'
  url 'https://github.com/valenok/mongoose/tarball/3.3'
  sha1 '75800b5046dbfaf29b29d977346df22bcce674c0'

  def install
    system "make", "mac", "CC=#{ENV.cc}", "CFLAGS=#{ENV.cflags}"
    bin.install "mongoose"
    man1.install "mongoose.1"
  end
end