b686dd9180
pkglint --only "https instead of http" -r -F With manual adjustments afterwards since pkglint 19.4.4 fixed a few indentations in unrelated lines. This mainly affects projects hosted at SourceForce, as well as freedesktop.org, CTAN and GNU.
31 lines
762 B
Makefile
31 lines
762 B
Makefile
# $NetBSD: Makefile,v 1.18 2020/01/18 23:35:13 rillig Exp $
|
|
|
|
DISTNAME= bash-doc-2.05b
|
|
PKGNAME= bash-doc-2.05.2
|
|
PKGREVISION= 1
|
|
CATEGORIES= shells
|
|
MASTER_SITES= ${MASTER_SITE_GNU:=bash/}
|
|
MASTER_SITES+= ftp://ftp.cwru.edu/pub/bash/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://www.gnu.org/software/bash/bash.html
|
|
COMMENT= Documentation for the GNU Bourne Again Shell
|
|
|
|
CONFLICTS= bash<=2.05nb1
|
|
|
|
WRKSRC= ${WRKDIR}/doc
|
|
NO_CONFIGURE= yes
|
|
NO_BUILD= yes
|
|
|
|
USE_TOOLS+= gzip
|
|
|
|
DOCDIR= ${PREFIX}/share/doc/bash
|
|
DOCDIR_FILES= article.ps bashref.ps article.txt bash.html bashref.html
|
|
|
|
INSTALLATION_DIRS= ${DOCDIR}
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCDIR_FILES} ${DESTDIR}${DOCDIR}
|
|
${GZIP_CMD} ${DESTDIR}${DOCDIR}/*.ps
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|