2013-12-19 03:30:23 +08:00
|
|
|
# Maintainer: Neophytos Kolokotronis <tetris4 AT gmail DOT com>
|
|
|
|
# Contributor: abveritas[at]chakra-project[dot]org>
|
2011-07-24 04:30:19 +08:00
|
|
|
|
|
|
|
pkgname=help2man
|
2015-05-26 06:01:37 +08:00
|
|
|
pkgver=1.46.4
|
2013-03-12 06:38:51 +08:00
|
|
|
pkgrel=1
|
2011-07-24 04:30:19 +08:00
|
|
|
pkgdesc="Conversion tool to create man files"
|
2013-03-12 06:38:51 +08:00
|
|
|
arch=('x86_64')
|
2011-07-24 04:30:19 +08:00
|
|
|
url="http://www.gnu.org/software/help2man/"
|
|
|
|
license=('GPL')
|
|
|
|
depends=('perl-locale-gettext')
|
2013-12-19 03:30:23 +08:00
|
|
|
install=help2man.install
|
2014-07-23 06:23:07 +08:00
|
|
|
source=("http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz")
|
2015-05-26 06:01:37 +08:00
|
|
|
md5sums=('a1b7fe49eddae8a2537ed74ee9ef11cb')
|
2011-07-24 04:30:19 +08:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
--mandir=/usr/share/man \
|
|
|
|
--infodir=/usr/share/info \
|
2013-03-12 06:38:51 +08:00
|
|
|
--libdir=/usr/lib
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
|
|
|
|
make DESTDIR="${pkgdir}" install
|
2011-07-24 04:30:19 +08:00
|
|
|
}
|