2012-03-04 18:59:55 +00:00
|
|
|
# $Id: PKGBUILD 151902 2012-03-03 16:12:24Z giovanni $
|
2011-01-22 00:56:40 +00:00
|
|
|
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
|
|
|
|
# Contributor: Paul Mattal <paul@mattal.com>
|
|
|
|
|
2012-03-04 19:00:18 +00:00
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
2011-01-22 00:56:40 +00:00
|
|
|
# - make install must be run as -j1, mkdir is not thread-safe for whatever reason
|
|
|
|
|
|
|
|
pkgname=help2man
|
2017-04-29 14:28:11 +00:00
|
|
|
pkgver=1.47.4
|
|
|
|
pkgrel=1
|
2011-01-22 00:56:40 +00:00
|
|
|
pkgdesc="Conversion tool to create man files"
|
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
url="http://www.gnu.org/software/help2man/"
|
|
|
|
license=('GPL')
|
|
|
|
depends=('perl-locale-gettext')
|
2016-04-06 11:54:03 +00:00
|
|
|
source=("http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz"{,.sig})
|
2017-04-29 14:28:11 +00:00
|
|
|
md5sums=('544aca496a7d89de3e5d99e56a2f03d3'
|
2016-04-06 11:54:03 +00:00
|
|
|
'SKIP')
|
|
|
|
validpgpkeys=('87EA44D150D89615E39A3FEEF0DC8E00B28C5995') # Brendan O'Dea <bod@debian.org>
|
2011-01-22 00:56:40 +00:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
--mandir=/usr/share/man \
|
|
|
|
--infodir=/usr/share/info \
|
2012-03-04 18:59:55 +00:00
|
|
|
--libdir=/usr/lib
|
2011-03-23 22:20:47 +00:00
|
|
|
make
|
2011-02-09 21:31:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
2011-03-23 22:20:47 +00:00
|
|
|
|
|
|
|
make -j1 DESTDIR="${pkgdir}" install
|
2011-01-22 00:56:40 +00:00
|
|
|
}
|