On Mon 06/07/2020 07:53, [email protected] wrote:
> On Mon, July 6, 2020 4:53 am, Bjorn Ketelaars wrote:
> >
> > Hi,
> >
> >
> > Couple of comments:
> > - I think CATEGORIES=sysutils is better. nnn and ranger are also there.
> > - No need to set HOMEPAGE as this is done by the GH_* magic. Have a look
> > at infrastructure/mk/bsd.port.mk. However, if fff has a homepage other than
> > the one on GitHUb than you could use HOMEPAGE - Please sort RUN_DEPENDS
> > - Instead of using do-install you could set FAKE_FLAGS and have Makefile
> > handle the rest. Something like the line below works FAKE_FLAGS=DESTDIR=
> > MANDIR="${DESTDIR}${PREFIX}/man
> > - No need to set CONFIGURE_STYLE as there is nothing to override
> >
> >
> Hey, Thanks for the feedback!
>
> I've have made the appropriate changes and reattached the tarball.
OK bket@ with the nit below.
diff --git Makefile Makefile
index 8d940f3aa63..68051a2c860 100644
--- Makefile
+++ Makefile
@@ -18,9 +18,9 @@ RUN_DEPENDS = converters/libiconv \
devel/xdg-utils \
shells/bash
+FAKE_FLAGS = DESTDIR= MANDIR="${DESTDIR}${PREFIX}/man"
+
NO_BUILD = Yes
NO_TEST = Yes
-FAKE_FLAGS = DESTDIR= MANDIR=${DESTDIR}${PREFIX}/man
-
.include <bsd.port.mk>