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.
29 lines
774 B
Makefile
29 lines
774 B
Makefile
# $NetBSD: Makefile,v 1.20 2020/01/18 23:30:44 rillig Exp $
|
|
|
|
DISTNAME= ed-1.14.1
|
|
CATEGORIES= editors
|
|
MASTER_SITES= ${MASTER_SITE_GNU:=ed/}
|
|
EXTRACT_SUFX= .tar.lz
|
|
|
|
MAINTAINER= reed@reedmedia.net
|
|
HOMEPAGE= https://www.gnu.org/software/ed/ed.html
|
|
COMMENT= GNU version of line-oriented text editor
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
GNU_CONFIGURE= yes
|
|
INFO_FILES= yes
|
|
|
|
CONFIGURE_ARGS+= --program-prefix=g
|
|
|
|
INSTALL_TARGET= install install-man
|
|
TEST_TARGET= check
|
|
|
|
INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 gnu/bin gnu/${PKGMANDIR}/man1
|
|
|
|
post-install:
|
|
.for f in ed red
|
|
${LN} -sf ${PREFIX}/bin/g${f} ${DESTDIR}${PREFIX}/${PKGGNUDIR}bin/${f}
|
|
${LN} -sf ${PREFIX}/${PKGMANDIR}/man1/g${f}.1 ${DESTDIR}${PREFIX}/${PKGGNUDIR}${PKGMANDIR}/man1/${f}.1
|
|
.endfor
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|