mpfr isl libmpc ver. bump

This commit is contained in:
Rmys
2023-01-30 14:24:04 +03:00
parent 8ce619c5e4
commit 050af6fc60
10 changed files with 762 additions and 104 deletions
+23
View File
@@ -0,0 +1,23 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/copyleft/gpl.txt.
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
autotools.configure()
def build():
autotools.make()
def check():
autotools.make("check")
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS","ChangeLog","doc/manual.pdf")