28 lines
497 B
Makefile
28 lines
497 B
Makefile
# Created by: Yanhui Shen <shen.elf@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pkg-rmleaf
|
|
PORTVERSION= 0.4
|
|
CATEGORIES= ports-mgmt
|
|
MASTER_SITES= # none
|
|
DISTFILES= # none
|
|
|
|
MAINTAINER= shen.elf@gmail.com
|
|
COMMENT= Remove leaf packages
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
NO_BUILD= yes
|
|
NO_WRKSUBDIR= yes
|
|
|
|
PLIST_FILES= sbin/pkg-rmleaf
|
|
|
|
do-extract:
|
|
${MKDIR} ${WRKSRC}
|
|
${CP} ${FILESDIR}/pkg-rmleaf ${WRKSRC}
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/pkg-rmleaf \
|
|
${STAGEDIR}${PREFIX}/sbin/pkg-rmleaf
|
|
|
|
.include <bsd.port.mk>
|