diff --git a/science/misc/m4ri/actions.py b/science/misc/m4ri/actions.py
new file mode 100644
index 0000000000..425ecd0dc1
--- /dev/null
+++ b/science/misc/m4ri/actions.py
@@ -0,0 +1,26 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+#
+# Licensed under the GNU General Public License, version 3.
+# See the file http://www.gnu.org/licenses/gpl.txt
+
+from pisi.actionsapi import get
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+
+def setup():
+ autotools.autoreconf("-vif")
+ autotools.configure("--with-openmp")
+
+ # fix unused direct dependency analysis
+ pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
+
+def build():
+ autotools.make()
+
+def check():
+ autotools.make("check")
+
+def install():
+ autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+ pisitools.dodoc("COPYING", "README*")
\ No newline at end of file
diff --git a/science/misc/m4ri/pspec.xml b/science/misc/m4ri/pspec.xml
new file mode 100644
index 0000000000..f02179dca2
--- /dev/null
+++ b/science/misc/m4ri/pspec.xml
@@ -0,0 +1,55 @@
+
+
+
+
+ m4ri
+ https://bitbucket.org/malb/m4ri
+
+ Blue Devil
+ bluedevil@sctzine.com
+
+ science.misc
+ GPLv2+
+ library
+ Algorithms for linear algebra over F_2.
+ M4RI is a library for fast arithmetic with dense matrices over F2. The name M4RI comes from the first implemented algorithm: The “Method of the Four Russians” inversion algorithm published by Gregory Bard. This algorithm in turn is named after the “Method of the Four Russians” multiplication algorithm which is probably better referred to as Kronrod's method.
+ https://bitbucket.org/malb/m4ri/get/release-20200125.tar.gz
+
+ libpng-devel
+
+
+
+
+ m4ri
+ Algorithms for linear algebra over F_2.
+
+ libpng
+
+
+ /usr/lib
+ /usr/share/doc/m4ri
+
+
+
+
+ m4ri-devel
+ Development files for m4ri
+
+ m4ri
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+
+
+
+
+
+ 2020-05-20
+ 20200125
+ First pisi release.
+ Blue Devil
+ bluedevil@sctzine.com
+
+
+
\ No newline at end of file
diff --git a/science/misc/m4ri/translations.xml b/science/misc/m4ri/translations.xml
new file mode 100644
index 0000000000..ed44b4b9bb
--- /dev/null
+++ b/science/misc/m4ri/translations.xml
@@ -0,0 +1,14 @@
+
+
+
+ m4ri
+ F2 üzerinden lineer cebir için algoritmalar.
+ m4ri, F2 üzerinden lineer cebir için algoritmalar sunar.
+
+
+
+ m4ri-devel
+ m4ri için geliştirme dosyaları
+ m4ri-devel, m4ri için geliştirme dosyalarını içerir.
+
+
\ No newline at end of file