Files
main/programming/language/perl/perl-IO-stringy/actions.py
T
4fury-c3440d8 bb5ccf99c6 perl-IO-stringy
2023-01-08 04:12:54 +03:00

22 lines
393 B
Python

#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import perlmodules, pisitools
def setup():
perlmodules.configure()
def build():
perlmodules.make()
def check():
perlmodules.make("test")
def install():
perlmodules.install()
pisitools.dodoc("Changes")