aeac01a4bb
Approved by: portmgr (not really, but touches unstaged ports)
21 lines
444 B
Makefile
21 lines
444 B
Makefile
# Created by: Lapo Luchini <lapo@lapo.it>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= rclean
|
|
PORTVERSION= 1.14
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://www.lapo.it/rclean/
|
|
|
|
MAINTAINER= lapo@lapo.it
|
|
COMMENT= Command-line rc.conf ordering and cleaning tool
|
|
|
|
PLIST_FILES= bin/rclean
|
|
USES= tar:bzip2
|
|
|
|
do-build:
|
|
@(cd ${WRKSRC}; ${CC} -o ${PORTNAME} ${PORTNAME}.c)
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|