blob: 34b210f66c7f325489ce6ef2c1b81b8a90af8623 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Sproxy < Formula
homepage 'http://www.joedog.org/index/sproxy-home'
url 'http://www.joedog.org/pub/sproxy/sproxy-1.02.tar.gz'
sha1 'c218b3a49d3acc3aca39ac658b2013846ee7c5b9'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make"
system "make install"
# Makefile doesn't honor mandir, so move manpages post-install
share.install prefix+'man'
end
end
|