forked from conda-forge/staged-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request conda-forge#20692 from cbrueffer/perl-clone-choose
Add perl-clone-choose.
- Loading branch information
Showing
1 changed file
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
{% set name = "perl-clone-choose" %} | ||
{% set version = "0.010" %} | ||
{% set sha256 = "5623481f58cee8edb96cd202aad0df5622d427e5f748b253851dfd62e5123632" %} | ||
|
||
package: | ||
name: {{ name }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://cpan.metacpan.org/authors/id/H/HE/HERMES/Clone-Choose-{{ version }}.tar.gz | ||
sha256: {{ sha256 }} | ||
|
||
build: | ||
noarch: generic | ||
number: 0 | ||
script: | ||
- perl Makefile.PL INSTALLDIRS=vendor NO_PERLLOCAL=1 NO_PACKLIST=1 | ||
- make | ||
- make test | ||
- make install VERBINST=1 | ||
|
||
requirements: | ||
build: | ||
- make | ||
host: | ||
- perl | ||
- perl-extutils-makemaker | ||
- perl-test-without-module | ||
- perl-storable | ||
run: | ||
- perl | ||
- perl-storable | ||
|
||
test: | ||
imports: | ||
- Clone::Choose | ||
|
||
about: | ||
home: https://metacpan.org/dist/Clone-Choose | ||
license: GPL-1.0-or-later OR Artistic-1.0-Perl | ||
license_family: OTHER | ||
summary: 'Choose appropriate clone utility' | ||
license_file: | ||
- {{ environ["PREFIX"] }}/man/man1/perlartistic.1 | ||
- {{ environ["PREFIX"] }}/man/man1/perlgpl.1 | ||
|
||
extra: | ||
recipe-maintainers: | ||
- cbrueffer |