git: 2e19a58749fb - main - net/trippy: Strip binary, pacify portfmt

From: Emanuel Haupt <ehaupt_at_FreeBSD.org>
Date: Mon, 01 May 2023 10:51:59 UTC
The branch main has been updated by ehaupt:

URL: https://cgit.FreeBSD.org/ports/commit/?id=2e19a58749fb1a2473d16602c3beaa756e49ea3f

commit 2e19a58749fb1a2473d16602c3beaa756e49ea3f
Author:     Emanuel Haupt <ehaupt@FreeBSD.org>
AuthorDate: 2023-05-01 10:51:37 +0000
Commit:     Emanuel Haupt <ehaupt@FreeBSD.org>
CommitDate: 2023-05-01 10:51:37 +0000

    net/trippy: Strip binary, pacify portfmt
---
 net/trippy/Makefile | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/net/trippy/Makefile b/net/trippy/Makefile
index 26dbe3b336ae..39f510daa174 100644
--- a/net/trippy/Makefile
+++ b/net/trippy/Makefile
@@ -1,5 +1,6 @@
 PORTNAME=	trippy
 PORTVERSION=	0.7.0
+PORTREVISION=	1
 CATEGORIES=	net
 
 MAINTAINER=	ehaupt@FreeBSD.org
@@ -13,11 +14,14 @@ USES=		cargo
 USE_GITHUB=	yes
 GH_ACCOUNT=	fujiapple852
 
-OPTIONS_DEFINE=	SUID
-OPTIONS_DEFAULT=SUID
-SUID_DESC=	Use suid to allow execution as non root
+OPTIONS_DEFINE=		SUID
+OPTIONS_DEFAULT=	SUID
+SUID_DESC=		Use suid to allow execution as non root
 
 SUID_PLIST_FILES=	"@(,,4110) bin/trip"
 SUID_PLIST_FILES_OFF=	"@(,,0100) bin/trip"
 
+post-install:
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/trip
+
 .include <bsd.port.mk>