perl-Devel-CheckCompiler

This commit is contained in:
4fury-c3440d8
2023-01-08 05:42:27 +03:00
parent e1c411e8e2
commit cc6c697a7b
2 changed files with 66 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,47 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>perl-Devel-CheckCompiler</Name>
<Homepage>https://metacpan.org/pod/Devel::CheckCompiler</Homepage>
<Packager>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Packager>
<License>Artistic</License>
<IsA>library</IsA>
<PartOf>programming.language.perl</PartOf>
<Summary>Check the compiler's availability.</Summary>
<Description>Devel::CheckCompiler is checker for compiler's availability.</Description>
<Archive sha1sum="eb90cfe52ff6b026f99fdbcc41403440e5f7619d" type="targz">
https://cpan.metacpan.org/authors/id/S/SY/SYOHEX/Devel-CheckCompiler-0.07.tar.gz
</Archive>
<BuildDependencies>
<Dependency>perl</Dependency>
<Dependency>perl-Module-Build</Dependency>
<Dependency>perl-Test-Requires</Dependency>
<Dependency>perl-Module-Build-Tiny</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>perl-Devel-CheckCompiler</Name>
<RuntimeDependencies>
<Dependency>perl</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.07</Version>
<Comment>First build.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
</History>
</PISI>