contrib/help2man/Pkgfile

24 lines
465 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/
2014-11-10 13:28:07 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
2007-09-25 23:27:41 +02:00
name=help2man
2020-07-04 10:41:55 +02:00
version=1.47.16
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
}