Files
main/programming/language/perl/perl-JSON/actions.py
T
4fury-c3440d8 731741aee1 perl-JSON.
2023-01-15 14:57:54 +03:00

22 lines
418 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", "README")