35 lines
729 B
Makefile
35 lines
729 B
Makefile
# $OpenBSD: Makefile,v 1.55 2019/11/18 16:14:56 sthen Exp $
|
|
|
|
COMMENT = compiler cache
|
|
|
|
V = 3.7.6
|
|
DISTNAME = ccache-$V
|
|
CATEGORIES = devel
|
|
|
|
HOMEPAGE = https://ccache.dev/
|
|
|
|
MAINTAINER = Stuart Henderson <sthen@openbsd.org>
|
|
|
|
# GPLv3+
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
WANTLIB += c m z
|
|
|
|
MASTER_SITES = https://github.com/ccache/ccache/releases/download/v$V/
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
|
|
# This port should not have build/run dependencies.
|
|
NO_CCACHE = Yes
|
|
|
|
# Failure in cpp1 test suire appears to be due to an embedded filename
|
|
# in a .o file present in one file, and not present in the file being
|
|
# compared with.
|
|
TEST_DEPENDS = shells/bash \
|
|
sysutils/coreutils
|
|
|
|
pre-test:
|
|
ln -s ${LOCALBASE}/bin/gseq ${WRKDIR}/bin/seq
|
|
|
|
.include <bsd.port.mk>
|