PKGBUILDs/extra/help2man/PKGBUILD

37 lines
922 B
Bash
Raw Normal View History

2011-07-14 20:31:41 +00:00
# $Id: PKGBUILD 131671 2011-07-13 13:59:50Z giovanni $
2011-01-22 00:56:40 +00:00
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: Paul Mattal <paul@mattal.com>
# PlugApps: Kevin Mihelich <kevin@plugapps.com>
# - make install must be run as -j1, mkdir is not thread-safe for whatever reason
plugrel=1
pkgname=help2man
2011-07-14 20:31:41 +00:00
pkgver=1.40.4
2011-01-22 00:56:40 +00:00
pkgrel=1
pkgdesc="Conversion tool to create man files"
arch=('i686' 'x86_64')
url="http://www.gnu.org/software/help2man/"
license=('GPL')
depends=('perl-locale-gettext')
2011-05-26 12:50:27 +00:00
install=help2man.install
2011-03-23 22:20:47 +00:00
source=("http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz")
2011-07-14 20:31:41 +00:00
md5sums=('4d79dc7cb7c20019c2a3650d35259c45')
2011-01-22 00:56:40 +00:00
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--libdir=/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
}