- properly parse timestamps in commit objects as UTC (patch by Hiltjo Posthuma) - strip Git GPG signatures from log messages - fix regression: don't try to parse "leightweight" tags as real tag objects
24 lines
508 B
Makefile
24 lines
508 B
Makefile
# $OpenBSD: Makefile,v 1.7 2019/08/13 15:20:03 stsp Exp $
|
|
|
|
COMMENT = game of trees version control system
|
|
|
|
V = 0.7
|
|
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>
|