d7c210b6e8
Gitolite is an access control layer on top of git. Here are the features that most people see: * Use a single unix user ("real" user) on the server. * Provide access to many gitolite users. * Control access to many git repositories. ok aja@
35 lines
694 B
Makefile
35 lines
694 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2013/04/22 06:48:25 jasper Exp $
|
|
|
|
PKG_ARCH= *
|
|
|
|
COMMENT= secure hosting of Git repositories
|
|
|
|
VERSION= 3.5.1
|
|
DISTNAME= gitolite-${VERSION}
|
|
CATEGORIES= sysutils devel
|
|
|
|
HOMEPAGE= https://github.com/sitaramc/gitolite/
|
|
|
|
MAINTAINER= Jasper Lievisse Adriaanse <jasper@openbsd.org>
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
MASTER_SITES= http://distfiles.nl/
|
|
|
|
RUN_DEPENDS= devel/git
|
|
|
|
NO_BUILD= Yes
|
|
NO_TEST= Yes
|
|
|
|
SUBST_VARS+= VERSION
|
|
GL_DIR= ${PREFIX}/libexec/gitolite/
|
|
|
|
do-install:
|
|
${SUBST_CMD} ${WRKSRC}/install
|
|
${INSTALL_DATA_DIR} ${GL_DIR}
|
|
perl ${WRKSRC}/install -to ${GL_DIR}
|
|
cd ${PREFIX}/bin/ && ln -s ../libexec/gitolite/gitolite
|
|
|
|
.include <bsd.port.mk>
|