mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
0c2b502abc
- Remove gratuitous whitespaces at end of line in pkg-descr - Unmute install command PR: ports/186081 [1] Submitted by: Lapo Luchini <lapo@lapo.it> (maintainer)
22 lines
443 B
Makefile
22 lines
443 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
|
|
|
|
do-build:
|
|
@(cd ${WRKSRC}; ${CC} -o ${PORTNAME} ${PORTNAME}.c)
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|