new perl packages: perl-archive-cpio, perl-sub-override, perl-sub-prototype

This commit is contained in:
suvari
2026-06-02 23:21:12 +03:00
parent db75d1a102
commit 46a418d4ae
10 changed files with 380208 additions and 379706 deletions
@@ -0,0 +1,25 @@
#!/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 get
from pisi.actionsapi import pisitools
from pisi.actionsapi import perlmodules
WorkDir="Sub-Override-%s" % get.srcVERSION()
def setup():
perlmodules.configure()
def build():
perlmodules.make()
def check():
perlmodules.make("test")
def install():
perlmodules.install()
pisitools.dodoc("README*", "Changes")