mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-20 00:21:35 +00:00
35 lines
730 B
Makefile
35 lines
730 B
Makefile
# Created by: Ashish SHUKLA <ashish@FreeBSD.org>
|
|
|
|
PORTNAME= git-remote-gcrypt
|
|
PORTVERSION= 1.4
|
|
CATEGORIES= security
|
|
|
|
MAINTAINER= ashish@FreeBSD.org
|
|
COMMENT= PGP-encrypt git remotes
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}docutils>0:textproc/py-docutils@${PY_FLAVOR}
|
|
RUN_DEPENDS= rsync:net/rsync \
|
|
curl:ftp/curl \
|
|
gpg:security/gnupg
|
|
|
|
USES= python:build
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= spwhitton
|
|
MAKE_ENV= DESTDIR=${STAGEDIR}
|
|
|
|
NO_BUILD=
|
|
|
|
PLIST_FILES= bin/${PORTNAME} \
|
|
man/man1/${PORTNAME}.1.gz
|
|
|
|
post-extract:
|
|
@${REINPLACE_CMD} -e s,prefix/share/man,prefix/man, ${WRKSRC}/install.sh
|
|
|
|
do-install:
|
|
@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${WRKSRC}/install.sh
|
|
|
|
.include <bsd.port.mk>
|