2010-01-17 01:13:10 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Httping < Formula
|
2010-01-17 01:13:10 +00:00
|
|
|
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'
|
2012-01-01 22:48:02 +00:00
|
|
|
|
2013-11-30 20:39:18 +00:00
|
|
|
depends_on 'gettext'
|
|
|
|
depends_on 'fftw' => :optional
|
2010-01-17 01:13:10 +00:00
|
|
|
|
|
|
|
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", ""
|
2012-05-15 18:31:21 +00:00
|
|
|
system "make", "install", "PREFIX=#{prefix}"
|
2010-01-17 01:13:10 +00:00
|
|
|
end
|
|
|
|
end
|