mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-03-19 00:21:40 +00:00
Added extra/help2man
This commit is contained in:
parent
0141dd71fd
commit
7fefb849f8
1 changed files with 30 additions and 0 deletions
30
extra/help2man/PKGBUILD
Normal file
30
extra/help2man/PKGBUILD
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
# $Id: PKGBUILD 83522 2010-06-21 22:45:22Z giovanni $
|
||||||
|
# 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
|
||||||
|
pkgver=1.38.2
|
||||||
|
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')
|
||||||
|
source=(http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
||||||
|
md5sums=('426671c6fe79e5ef2233303367eab5a6')
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||||
|
|
||||||
|
./configure --prefix=/usr \
|
||||||
|
--mandir=/usr/share/man \
|
||||||
|
--infodir=/usr/share/info \
|
||||||
|
--libdir=/lib
|
||||||
|
make || return 1
|
||||||
|
make -j1 DESTDIR="${pkgdir}" install || return 1
|
||||||
|
}
|
Loading…
Reference in a new issue