should fix build on systems without a /usr/src directory (noticed by landry@). Changes for 0.3: - fix bug where 'revert -p' would delete all lines following a reverted change - fix merge bug inherited from OpenRCS, affecting lines with leading . - fix man page installation during manual 'make install' from plain tarball
24 lines
508 B
Makefile
24 lines
508 B
Makefile
# $OpenBSD: Makefile,v 1.3 2019/08/10 15:31:52 stsp Exp $
|
|
|
|
COMMENT = game of trees version control system
|
|
|
|
V = 0.3
|
|
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>
|