aboutsummaryrefslogblamecommitdiff
path: root/dns/doggo/Makefile
blob: b9e7cbc89756c1ac7cbc0e56342238937bf912ee (plain) (tree)
1
2
3
4
5
6
7
8
9

                         
                     
                 
                 



                                                         
                                                 



                                 
                               

                                         
                                 
 


                                                         

             






                                                                            

                      
PORTNAME=	doggo
DISTVERSIONPREFIX=	v
DISTVERSION=	0.5.4
PORTREVISION=	4
PORTEPOCH=	1
CATEGORIES=	dns

MAINTAINER=	yuri@FreeBSD.org
COMMENT=	Modern command-line DNS client (like dig)
WWW=		https://github.com/mr-karan/doggo

LICENSE=	GPLv3
LICENSE_FILE=	${WRKSRC}/LICENSE

USES=		go:1.18,modules

GO_MODULE=	github.com/mr-karan/doggo
GO_TARGET=	./cmd/${PORTNAME}

PLIST_FILES=	bin/${PORTNAME} \
		share/fish/completions/${PORTNAME}.fish \
		share/zsh/site-functions/_${PORTNAME}

post-install:
	# install completions
	@${MKDIR} ${STAGEDIR}${PREFIX}/share/fish/completions
	${INSTALL_DATA} ${WRKSRC}/completions/${PORTNAME}.fish \
		${STAGEDIR}${PREFIX}/share/fish/completions/${PORTNAME}.fish
	@${MKDIR} ${STAGEDIR}${PREFIX}/share/zsh/site-functions
	${INSTALL_DATA} ${WRKSRC}/completions/${PORTNAME}.zsh \
		${STAGEDIR}${PREFIX}/share/zsh/site-functions/_${PORTNAME}

.include <bsd.port.mk>