mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-17 08:01:36 +00:00
aeac01a4bb
Approved by: portmgr (not really, but touches unstaged ports)
22 lines
444 B
Makefile
22 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>
|