stsp 57ca27707b import Game of Trees
Game of Trees (Got) is a version control system which prioritizes
ease of use and simplicity over flexibility.

Got is still under development; it is being developed exclusively
on OpenBSD and its target audience are OpenBSD developers. Got is
ISC-licensed and was designed with pledge(2) and unveil(2) in mind.

Got uses Git repositories to store versioned data. At present, Got
supports local version control operations only. Git can be used
for any functionality which has not yet been implemented in Got.
It will always remain possible to work with both Got and Git on
the same repository.

This package includes the got(1) command-line interface and the
tog(1) read-only repository browser. EXAMPLES in the got(1) man
page contains a quick-start guide for OpenBSD developers.

ok kn@ gonzalo@
2019-08-09 12:47:49 +00:00

26 lines
524 B
Makefile

# $OpenBSD: Makefile,v 1.1.1.1 2019/08/09 12:47:49 stsp Exp $
COMMENT = game of trees version control system
V = 0.1
DISTNAME = got-${V}
CATEGORIES = devel
HOMEPAGE = https://gameoftrees.org
MAINTAINER = Stefan Sperling <stsp@openbsd.org>
# ISC
PERMIT_PACKAGE = Yes
# uses pledge()
WANTLIB = c curses panel pthread util z
MASTER_SITES = https://gameoftrees.org/releases/
TEST_DEPENDS = devel/git \
${PKGPATH}=${V}
TEST_TARGET = regress
post-configure:
${MAKE_PROGRAM} -C ${WRKSRC} obj
.include <bsd.port.mk>