mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
df7eaa54b7
* fix(po4a) closes #5030 * wip
85 lines
2.2 KiB
YAML
85 lines
2.2 KiB
YAML
distributable:
|
|
url: https://github.com/mquinson/po4a/archive/refs/tags/{{version.tag}}.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
github: mquinson/po4a
|
|
|
|
dependencies:
|
|
gnu.org/gettext: ^0.22
|
|
perl.org: ^5.22
|
|
gnome.org/libxslt: ^1.1
|
|
|
|
runtime:
|
|
env:
|
|
PERL5LIB: ${{prefix}}/libexec/lib/perl5:$PERL5LIB
|
|
|
|
build:
|
|
dependencies:
|
|
cpanmin.us: '*'
|
|
docbook.org/xsl: '*'
|
|
curl.se: '*'
|
|
script:
|
|
- cpanm -l {{prefix}}/libexec $PKGS
|
|
|
|
- run: |
|
|
curl -L "https://cpan.metacpan.org/authors/id/R/RA/RAAB/SGMLSpm-1.1.tar.gz" | \
|
|
tar -xz --strip-components=1
|
|
cpanm -l {{prefix}}/libexec .
|
|
working-directory: pkgs/SGMLSpm
|
|
|
|
- run: |
|
|
curl -L "https://cpan.metacpan.org/authors/id/J/JS/JSTOWE/TermReadKey-2.38.tar.gz" | \
|
|
tar -xz --strip-components=1
|
|
cpanm -l {{prefix}}/libexec .
|
|
working-directory: pkgs/TermReadKey
|
|
|
|
# xsltproc fails to parse the remote xsl file; skip xml docs
|
|
- sed -i
|
|
-e "s|/usr/share/xml/docbook/stylesheet/docbook-xsl|{{deps.docbook.org/xsl.prefix}}/libexec/docbook-xsl-ns|"
|
|
-e "s/if ( \$\^O ne 'MSWin32' )/if (0)/"
|
|
Po4aBuilder.pm
|
|
|
|
- perl Build.PL --install_base {{prefix}}/libexec
|
|
- ./Build
|
|
- ./Build install
|
|
|
|
- run: ln -s ../../libexec/man/man? .
|
|
working-directory: ${{prefix}}/share/man
|
|
|
|
- run: sed -i "s|{{deps.perl.org.prefix}}/bin/perl|/usr/bin/env perl|" *
|
|
working-directory: ${{prefix}}/libexec/bin
|
|
|
|
- run: ln -s ./libexec/bin bin
|
|
working-directory: ${{prefix}}
|
|
env:
|
|
PERL5LIB: ${{prefix}}/libexec/lib/perl5:$PERL5LIB
|
|
PKGS:
|
|
- Locale::gettext
|
|
- Module::Build
|
|
- Pod::Parser
|
|
- Text::WrapI18N
|
|
- Unicode::GCString
|
|
- YAML::Tiny
|
|
- ExtUtils::CChecker
|
|
- XS::Parse::Keyword::Builder
|
|
- Syntax::Keyword::Try
|
|
- Module::Build
|
|
|
|
provides:
|
|
- bin/msguntypot
|
|
- bin/po4a
|
|
- bin/po4a-display-man
|
|
- bin/po4a-display-pod
|
|
- bin/po4a-gettextize
|
|
- bin/po4a-normalize
|
|
- bin/po4a-updatepo
|
|
- bin/podselect
|
|
|
|
test:
|
|
- po4a-updatepo -f latex -m en.tex -p latex.pot
|
|
- cat latex.pot | grep 'Hello from Tea'
|
|
- po4a-updatepo -f text -m en.md -p text.pot
|
|
- cat text.pot | grep 'Hello from Tea'
|
|
- po4a --version | grep {{version.marketing}}
|