Edit

IABSD.fr/ports/sysutils/restic/Makefile

Branch :

  • Show log

    Commit

  • Author : abieber
    Date : 2019-01-23 00:54:07
    Hash : 3e989a2c
    Message : Bump restic to 0.9.4 OK rsadowski

  • sysutils/restic/Makefile
  • # $OpenBSD: Makefile,v 1.7 2019/01/23 00:54:07 abieber Exp $
    
    COMMENT =	fast, efficient and secure backup program
    
    V =		0.9.4
    DISTNAME =	restic-${V}
    
    CATEGORIES =	sysutils
    
    HOMEPAGE =	https://restic.net/
    
    MAINTAINER =	Aaron Bieber <abieber@openbsd.org>
    
    # BSD
    PERMIT_PACKAGE_CDROM =	Yes
    
    WANTLIB += c pthread
    
    MASTER_SITES =	https://github.com/restic/restic/releases/download/v${V}/
    
    MODULES =	lang/go
    MODGO_TYPE =	bin
    
    NO_TEST =	Yes
    
    ALL_TARGET =	github.com/restic/restic
    
    do-build:
    	cd ${WRKSRC} && ${MODGO_CMD} build ./cmd/restic/...
    
    do-install:
    	${INSTALL_PROGRAM} ${WRKSRC}/restic ${PREFIX}/bin
    	${INSTALL_DATA_DIR} ${PREFIX}/man/man1
    	${INSTALL_MAN} ${WRKSRC}/doc/man/*.1 ${PREFIX}/man/man1
    
    .include <bsd.port.mk>