- improve error message if helper binaries fail to unveil(2) - add support for tags to -c options of some got commands - attempt to reject GOT_AUTHOR values without an email address because git is unable to parse resulting commit objects - fix build on OpenBSD/sparc64 (gcc)
26 lines
520 B
Makefile
26 lines
520 B
Makefile
# $OpenBSD: Makefile,v 1.2 2019/08/09 12:58:38 stsp Exp $
|
|
|
|
COMMENT = game of trees version control system
|
|
|
|
V = 0.2
|
|
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>
|