80824c9956
* Added lib/git-annex. Thanks, martin f krafft. Closes: #743882 * Make mr help work even if the mrconfig file is busted. Thanks, Lorenzo Cappelletti * Support "vcsh clone url repo" as trusted checkout syntax, while still supporting the old syntax. * bootstrap: Support reading bootstrap mrconfig file from both a local file, and from stdin. Thanks, Lorenzo Cappelletti
35 lines
932 B
Makefile
35 lines
932 B
Makefile
# $NetBSD: Makefile,v 1.17 2014/08/01 07:29:14 schmonz Exp $
|
|
#
|
|
|
|
DISTNAME= myrepos_1.20140613
|
|
PKGNAME= ${DISTNAME:S/_/-/}
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_DEBIAN:=pool/main/m/myrepos/}
|
|
|
|
MAINTAINER= schmonz@NetBSD.org
|
|
HOMEPAGE= http://myrepos.branchable.com/
|
|
COMMENT= Treat multiple repositories as one combined repository
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
DEPENDS+= p5-libwww-[0-9]*:../../www/p5-libwww
|
|
DEPENDS+= p5-HTML-Parser-[0-9]*:../../www/p5-HTML-Parser
|
|
DEPENDS+= p5-ack-[0-9]*:../../textproc/p5-ack
|
|
|
|
WRKSRC= ${WRKDIR}/${PKGBASE}
|
|
USE_LANGUAGES= # none
|
|
|
|
BUILD_TARGET+= build
|
|
TEST_TARGET+= test
|
|
USE_TOOLS+= perl:run
|
|
|
|
REPLACE_PERL+= mr webcheckout
|
|
|
|
EGDIR= ${PREFIX}/share/examples/mr
|
|
INSTALLATION_DIRS= bin ${PKGMANDIR} ${EGDIR}
|
|
|
|
post-install:
|
|
set -e; cd ${WRKSRC}; \
|
|
${INSTALL_DATA} mrconfig ${DESTDIR}${EGDIR}; \
|
|
${INSTALL_DATA} mrconfig.complex ${DESTDIR}${EGDIR}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|