perl-Module-Build-Tiny

This commit is contained in:
4fury-c3440d8
2023-01-08 05:41:25 +03:00
parent f3167adac0
commit e1c411e8e2
2 changed files with 71 additions and 0 deletions
@@ -0,0 +1,19 @@
#!/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, get
def setup():
perlmodules.configure()
def build():
perlmodules.make()
def check():
perlmodules.make("test")
def install():
perlmodules.install(parameters = "--installdirs=vendor --destdir=%s" % get.installDIR())
@@ -0,0 +1,52 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>perl-Module-Build-Tiny</Name>
<Homepage>https://metacpan.org/pod/Module::Build::Tiny</Homepage>
<Packager>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Packager>
<License>Artistic</License>
<IsA>library</IsA>
<PartOf>programming.language.perl</PartOf>
<Summary>A tiny replacement for Module::Build.</Summary>
<Description>
Many Perl distributions use a Build.PL file instead of a Makefile.PL file to drive distribution configuration, build, test and installation. Traditionally, Build.PL uses Module::Build as the underlying build system. This module provides a simple, lightweight, drop-in replacement.
</Description>
<Archive sha1sum="2127b3e52d59c545ff587ca127ee1686f2a50177" type="targz">
https://cpan.metacpan.org/authors/id/L/LE/LEONT/Module-Build-Tiny-0.039.tar.gz
</Archive>
<BuildDependencies>
<Dependency>perl</Dependency>
<Dependency>perl-ExtUtils-Config</Dependency>
<Dependency>perl-ExtUtils-Helpers</Dependency>
<Dependency>perl-ExtUtils-InstallPaths</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>perl-Module-Build-Tiny</Name>
<RuntimeDependencies>
<Dependency>perl</Dependency>
<Dependency>perl-ExtUtils-Config</Dependency>
<Dependency>perl-ExtUtils-Helpers</Dependency>
<Dependency>perl-ExtUtils-InstallPaths</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="data">/usr/lib/perl5/vendor_perl</Path>
<Path fileType="data">/usr/share/man</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2023-01-08</Date>
<Version>0.039</Version>
<Comment>First build.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
</History>
</PISI>