perl-ExtUtils-MakeMaker:moved from contrib

This commit is contained in:
blue-devil
2020-01-14 21:11:54 +00:00
parent 53a7676ada
commit 876b5bd812
3 changed files with 85 additions and 0 deletions
@@ -0,0 +1,24 @@
#!/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 perlmodules
from pisi.actionsapi import pisitools
def setup():
perlmodules.configure()
def build():
perlmodules.make()
# tests take long time
#def check():
# perlmodules.make("test")
def install():
perlmodules.install()
# conflict: perl has a binary with the same name
pisitools.remove("/usr/bin/instmodsh")
perlmodules.removePodfiles()