contrib/help2man/Pkgfile

24 lines
464 B
Plaintext
Raw Normal View History

2007-09-26 07:27:41 +10:00
# Description: A tool for automatically generating simple manual pages from program output.
2019-02-22 19:45:43 +11:00
# URL: https://www.gnu.org/software/help2man/
2014-11-10 23:28:07 +11:00
# Maintainer: Danny Rawlins, crux at romster dot me
2007-09-26 07:27:41 +10:00
name=help2man
2021-08-24 21:33:21 +10:00
version=1.48.5
2007-09-26 07:27:41 +10:00
release=1
2019-02-22 19:45:43 +11:00
source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.xz)
2007-09-26 07:27:41 +10:00
build() {
2010-03-27 11:43:11 +11:00
cd $name-$version
2007-09-26 07:27:41 +10:00
./configure \
--prefix=/usr \
2019-02-22 19:45:43 +11:00
--mandir=/usr/share/man \
2007-09-26 07:27:41 +10:00
--disable-nls
make
2010-03-27 11:43:11 +11:00
make DESTDIR=$PKG install
2007-09-26 07:27:41 +10:00
2020-04-17 22:46:10 +10:00
rm -r $PKG/usr/share/info
2011-01-09 19:56:22 +11:00
2007-09-26 07:27:41 +10:00
}