25 lines
587 B
Plaintext
25 lines
587 B
Plaintext
# Description: Conversion tool to create man files
|
|
# URL: URL: http://www.gnu.org/software/help2man/
|
|
# NuTyX package info file (http://nutyx.org)
|
|
# Packager: # NuTyX package info file (http://nutyx.org)
|
|
# Depends on: perl-locale-gettext
|
|
name=help2man
|
|
version=1.44.1
|
|
release=1
|
|
|
|
source=(http://ftp.gnu.org/gnu/help2man/help2man-$version.tar.xz)
|
|
|
|
build(){
|
|
cd $name-$version
|
|
./configure --prefix=/usr \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--libdir=/usr/lib
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|
|
|
|
|
|
|
|
# NuTyX Pkgfile (http://nutyx.org)
|