Added new formula: metis
METIS is a family of programs for partitioning unstructured graphs and hypergraphs and computing fill-reducing orderings of sparse matrices. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
9c1faadcf0
commit
dcfd7b8403
1 changed files with 14 additions and 0 deletions
14
Formula/metis.rb
Normal file
14
Formula/metis.rb
Normal file
|
@ -0,0 +1,14 @@
|
|||
require 'formula'
|
||||
|
||||
class Metis <Formula
|
||||
url 'http://glaros.dtc.umn.edu/gkhome/fetch/sw/metis/metis-4.0.tar.gz'
|
||||
homepage 'http://glaros.dtc.umn.edu/gkhome/views/metis'
|
||||
md5 '0aa546419ff7ef50bd86ce1ec7f727c7'
|
||||
|
||||
def install
|
||||
system "make"
|
||||
bin.install ['pmetis', 'kmetis', 'oemetis', 'onmetis', 'partnmesh',
|
||||
'partdmesh', 'mesh2nodal', 'mesh2dual', 'graphchk', 'Graphs/mtest']
|
||||
lib.install 'libmetis.a'
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue