1
0
forked from ports/contrib

metis: initial commit, version 5.1.0

This commit is contained in:
Tim Biermann 2019-08-11 11:14:11 +02:00
parent a8e7340f98
commit 3a5f7addd0
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 34 additions and 0 deletions

12
metis/.footprint Normal file
View File

@ -0,0 +1,12 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/cmpfillin
-rwxr-xr-x root/root usr/bin/gpmetis
-rwxr-xr-x root/root usr/bin/graphchk
-rwxr-xr-x root/root usr/bin/m2gmetis
-rwxr-xr-x root/root usr/bin/mpmetis
-rwxr-xr-x root/root usr/bin/ndmetis
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/metis.h
drwxr-xr-x root/root usr/lib/
-rwxr-xr-x root/root usr/lib/libmetis.so

5
metis/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF38qPY6T6tUF3mQIs0qgI8SnAIoR1OgYs8i/wIsCKx4NoPnVb4MuDYA27YfdMbtVX4uhqAo4Fz3rK5tMsH9u4MAU=
SHA256 (Pkgfile) = 7bbe2b5b0b903f61dbfee35a9a0a35cf08e33d0c5e033c4eea88c832766d170b
SHA256 (.footprint) = 35748513ff8e037388044b92c13b1ac4d7d5b1f5e0d8a93ecf4088752c724dc3
SHA256 (metis-5.1.0.tar.gz) = 76faebe03f6c963127dbb73c13eab58c9a3faeae48779f049066a21c087c5db2

17
metis/Pkgfile Normal file
View File

@ -0,0 +1,17 @@
# Description: A set of serial programs for partitioning graphs, partitioning finite element meshes, and producing fill reducing orderings for sparse matrices
# URL: http://glaros.dtc.umn.edu/gkhome/metis/metis/overview
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: cmake
name=metis
version=5.1.0
release=1
source=(http://glaros.dtc.umn.edu/gkhome/fetch/sw/metis/$name-$version.tar.gz)
build() {
cd $name-$version
ls
make config shared=1 prefix=/usr
make
make install DESTDIR=$PKG
}