mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 01:44:37 +08:00
31 lines
732 B
Bash
31 lines
732 B
Bash
# Maintainer: Neophytos Kolokotronis <tetris4 AT gmail DOT com>
|
|
# Contributor: abveritas[at]chakra-project[dot]org>
|
|
|
|
pkgname=help2man
|
|
pkgver=1.44.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')
|
|
install=help2man.install
|
|
source=("http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz")
|
|
md5sums=('a5dc6530340b41f0e492d400670dd7ae')
|
|
|
|
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
|
|
}
|