homebrew-core/Formula/httping.rb

17 lines
468 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Httping < Formula
homepage 'http://www.vanheusden.com/httping/'
2013-11-30 20:39:18 +00:00
url 'http://www.vanheusden.com/httping/httping-2.3.3.tgz'
sha1 '6b9e77039346388e2b02dbb1d60f7422e7133488'
2013-11-30 20:39:18 +00:00
depends_on 'gettext'
depends_on 'fftw' => :optional
def install
2013-11-30 20:39:18 +00:00
ENV.append "LDFLAGS", "-lintl"
inreplace "Makefile", "cp nl.mo $(DESTDIR)/$(PREFIX)/share/locale/nl/LC_MESSAGES/httping.mo", ""
system "make", "install", "PREFIX=#{prefix}"
end
end