summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 6afd14ccae3a8447fa6c9362e668fe699d23760a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: Fernando Ortiz <nandub+arch@nandub.info >
# Contributor: Alexander F. Rødseth <xyproto@archlinux.org>

pkgname=pod2man
pkgver=5.38.0
pkgrel=1
pkgdesc='Make pod2man easily accessible'
arch=(x86_64)
license=(GPL PerlArtistic)
url='https://perl.org/'
depends=(perl)

package() {
  # perl 5 places pod2man in /usr/bin/core_perl instead of /usr/bin,
  # for unknown reasons. This creates a symlink in what is what is now a more
  # conventional location.

  install -d "$pkgdir/usr/bin"
  ln -s /usr/bin/core_perl/pod2man "$pkgdir/usr/bin/pod2man"
}

# vim: ts=2 sw=2 et: