mpdecimal: new package for python3

This commit is contained in:
suvari
2018-01-31 22:48:51 +03:00
parent 58d710c8c1
commit 011744f265
7 changed files with 131037 additions and 130650 deletions
@@ -0,0 +1,20 @@
#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
autotools.configure("--prefix=/usr/")
def build():
autotools.make()
def install():
autotools.rawInstall('DESTDIR=%s' % get.installDIR())
pisitools.dodoc("LICENSE.txt", "README.txt")