Files
main/programming/language/perl/perl-Text-Iconv/actions.py
T
4fury-c3440d8 affff24a6a perl-Text-Iconv
2023-01-08 04:13:50 +03:00

20 lines
353 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
def setup():
perlmodules.configure()
def build():
perlmodules.make()
def check():
perlmodules.make("test")
def install():
perlmodules.install()