contrib/help2man/Pkgfile

24 lines
466 B
Plaintext
Raw Normal View History

2007-09-25 23:27:41 +02:00
# Description: A tool for automatically generating simple manual pages from program output.
2019-02-22 09:45:43 +01:00
# URL: https://www.gnu.org/software/help2man/
2023-03-03 03:22:33 +01:00
# Maintainer: John McQuah, jmcquah at disroot dot org
2007-09-25 23:27:41 +02:00
name=help2man
2022-12-17 13:48:38 +01:00
version=1.49.3
2007-09-25 23:27:41 +02:00
release=1
2019-02-22 09:45:43 +01:00
source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.xz)
2007-09-25 23:27:41 +02:00
build() {
2010-03-27 01:43:11 +01:00
cd $name-$version
2007-09-25 23:27:41 +02:00
./configure \
--prefix=/usr \
2019-02-22 09:45:43 +01:00
--mandir=/usr/share/man \
2007-09-25 23:27:41 +02:00
--disable-nls
make
2010-03-27 01:43:11 +01:00
make DESTDIR=$PKG install
2007-09-25 23:27:41 +02:00
2020-04-17 14:46:10 +02:00
rm -r $PKG/usr/share/info
2011-01-09 09:56:22 +01:00
2007-09-25 23:27:41 +02:00
}