mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
23 lines
447 B
Makefile
23 lines
447 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
|
|
USE_BZIP2= yes
|
|
|
|
NO_STAGE= yes
|
|
do-build:
|
|
@(cd ${WRKSRC}; ${CC} -o ${PORTNAME} ${PORTNAME}.c)
|
|
|
|
do-install:
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|