perl-Test-RequiresInternet:first pisi release

This commit is contained in:
blue-devil
2020-01-14 19:29:44 +00:00
parent cd512f4154
commit 724cbf113c
3 changed files with 74 additions and 0 deletions
@@ -0,0 +1,22 @@
#!/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()
def check():
perlmodules.make("test")
def install():
perlmodules.install()
pisitools.dodoc("README", "LICENSE")