core/help2man/PKGBUILD
2013-03-11 22:38:51 +00:00

29 lines
642 B
Bash

# Maintainer: abveritas[at]chakra-project[dot]org>
pkgname=help2man
pkgver=1.41.1
pkgrel=1
pkgdesc="Conversion tool to create man files"
arch=('x86_64')
url="http://www.gnu.org/software/help2man/"
license=('GPL')
depends=('perl-locale-gettext')
source=("http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz")
md5sums=('4485615cd699a78eb42444324546942a')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--libdir=/usr/lib
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
}