- 'got log' and 'tog log' now display tags in addition to branch references - 'got ref' can now be used to create symbolic references - use <limits.h> instead of <sys/limits.h> (patch by Thomas Klausner) - fix crash if 'got rebase' has no commits to rebase (with semarie@) - annotate symlinks with @ in 'got tree' and 'tog tree'
24 lines
508 B
Makefile
24 lines
508 B
Makefile
# $OpenBSD: Makefile,v 1.6 2019/08/13 12:25:54 stsp Exp $
|
|
|
|
COMMENT = game of trees version control system
|
|
|
|
V = 0.6
|
|
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
|
|
FAKE_FLAGS = MANDIR=${PREFIX}/man/man
|
|
|
|
.include <bsd.port.mk>
|