core/help2man/PKGBUILD

29 lines
642 B
Bash
Raw Normal View History

2013-03-12 06:38:51 +08:00
# Maintainer: abveritas[at]chakra-project[dot]org>
2011-07-24 04:30:19 +08:00
pkgname=help2man
2013-03-12 06:38:51 +08:00
pkgver=1.41.1
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-03-12 06:38:51 +08:00
source=("http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz")
md5sums=('4485615cd699a78eb42444324546942a')
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
}