31 lines
673 B
Makefile
31 lines
673 B
Makefile
# $OpenBSD: Makefile,v 1.20 2019/07/12 20:49:52 sthen Exp $
|
|
|
|
COMMENT = list obsolete files between OpenBSD upgrades
|
|
|
|
V = 2.8
|
|
DISTNAME = sysclean-${V}
|
|
|
|
CATEGORIES = sysutils
|
|
HOMEPAGE = https://github.com/semarie/sysclean/
|
|
|
|
MAINTAINER = Sebastien Marie <semarie@online.fr>
|
|
|
|
MASTER_SITES = https://github.com/semarie/sysclean/releases/download/${V}/
|
|
|
|
# ISC
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
MAKE_ENV = BINDIR=${LOCALBASE}/sbin \
|
|
MANDIR=${LOCALBASE}/man/man
|
|
|
|
NO_BUILD = Yes
|
|
PKG_ARCH = *
|
|
|
|
TEST_TARGET = regress
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/sysclean
|
|
${INSTALL_DATA} ${WRKSRC}/sysclean.ignore ${PREFIX}/share/examples/sysclean
|
|
|
|
.include <bsd.port.mk>
|