mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-20 08:02:26 +01:00
33 lines
812 B
Plaintext
33 lines
812 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=help2man
|
|
pkgver=1.47.10
|
|
pkgrel=0
|
|
pkgdesc="Create simple man pages from --help output"
|
|
url="https://www.gnu.org/software/help2man"
|
|
arch="noarch"
|
|
license="GPL-3.0-or-later"
|
|
depends="perl"
|
|
options="!check" # No test suite
|
|
subpackages="$pkgname-doc"
|
|
source="http://ftp.gnu.org/gnu/help2man/help2man-$pkgver.tar.xz"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--localstatedir=/var
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="071383f38fb5264137200439a460e70298fc23d88069a96f150bf50a4e2a08d1d5d29555053b0ea36c809eec8484c4432b55d7d0bddd68f33b07b1abb97556ff help2man-1.47.10.tar.xz"
|