mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
84ed108ab9
- Drop maintainership PR: 191289 [1] Submitted by: joe@thrallingpenguin.com
31 lines
731 B
Makefile
31 lines
731 B
Makefile
# Created by: Lars Thegler <lth@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= easygit
|
|
PORTVERSION= 0.98
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://www.gnome.org/~newren/eg/download/${PORTVERSION}/
|
|
DISTNAME= eg
|
|
EXTRACT_SUFX= # none
|
|
EXTRACT_ONLY= # none
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Easy wrapper for git
|
|
|
|
RUN_DEPENDS= git:${PORTSDIR}/devel/git
|
|
|
|
DIST_SUBDIR= eg/${PORTVERSION}_${PORTREVISION}
|
|
USES= perl5 shebangfix
|
|
SHEBANG_FILES= ${_DISTDIR}/eg
|
|
USE_PERL5= run
|
|
NO_WRKSUBDIR= yes
|
|
NO_BUILD= yes
|
|
PLIST_FILES= bin/eg bin/easygit
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_SCRIPT} ${_DISTDIR}/eg ${STAGEDIR}${PREFIX}/bin/
|
|
cd ${STAGEDIR}${PREFIX}/bin && ${LN} -s ./eg ${STAGEDIR}${PREFIX}/bin/easygit
|
|
|
|
.include <bsd.port.mk>
|