blob: 5575ddb63b8c0d56918ab29d253a676b02f70f94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
require 'formula'
class Pnapi < Formula
homepage 'http://service-technology.org/pnapi/'
url 'http://download.gna.org/service-tech/pnapi/pnapi-4.02.tar.gz'
sha1 'caa61aaa5886381e594f7eb57a75c1feb6960c3a'
depends_on "graphviz"
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
# for some reason config.h is not installed by the Makefile
(include/'pnapi').install 'src/config.h'
end
def test
system "#{bin}/petri", "--help"
end
end
|