blob: 7ef97b2bb14a23e5365733961833e1f1c972e296 (
plain) (
tree)
|
|
# Contributor: Christian Kampka <christian@kampka.net>
# Maintainer:
pkgname=po4a
pkgver=0.51
pkgrel=1
_dlid=4214
pkgdesc="Tools for helping translation of documentation"
url="https://po4a.alioth.debian.org"
arch="noarch"
options="!check" # comments changed format, it fails
license="GPL-2.0-only"
depends="perl gettext-tiny"
makedepends="docbook-xsl perl-module-build diffutils"
subpackages="$pkgname-doc $pkgname-lang"
source="https://alioth.debian.org/frs/download.php/file/${_dlid}/${pkgname}-${pkgver}.tar.gz"
build() {
cd "$builddir"
perl Build.PL installdirs=vendor create_packlist=0
perl Build
}
check() {
cd "$builddir"
perl Build test
}
package() {
cd "$builddir"
perl Build destdir=${pkgdir} install
# remove perllocal.pod and .packlist
find ${pkgdir} -name .packlist -o -name perllocal.pod -delete
}
sha512sums="dd4ecf4eab59c41466b11828b7a4e5e06cfa8b8a188f808b05ef5aa163ba463ebf44485225c4bbdefcdd42b56d5956d9bc96c34dba12557f098723b7edde18b6 po4a-0.51.tar.gz"
|