blob: 44e5527d9c0cae02ba35f19908363da2153c16c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Xplot < Formula
homepage 'http://www.xplot.org'
url 'http://www.xplot.org/xplot/xplot-0.90.7.1.tar.gz'
sha1 '164074206addaeb971d2fa65069c7c7be654efc5'
depends_on :x11
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
inreplace 'Makefile', 'man/man1', 'share/man/man1'
system "make install"
end
end
|