mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-27 10:03:20 +00:00
31 lines
553 B
Makefile
31 lines
553 B
Makefile
# Created by: Yanhui Shen <shen.elf@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pkg-rmleaf
|
|
PORTVERSION= 0.2
|
|
CATEGORIES= ports-mgmt
|
|
MASTER_SITES= # none
|
|
DISTFILES= # none
|
|
|
|
MAINTAINER= shen.elf@gmail.com
|
|
COMMENT= Remove leaf packages
|
|
|
|
LICENSE= BSD
|
|
|
|
RUN_DEPENDS= ${LOCALBASE}/sbin/pkg:${PORTSDIR}/ports-mgmt/pkg
|
|
|
|
NO_BUILD= yes
|
|
WRKSRC= ${WRKDIR}
|
|
|
|
PLIST_FILES= sbin/pkg-rmleaf
|
|
|
|
NO_STAGE= yes
|
|
do-extract:
|
|
${MKDIR} ${WRKSRC}
|
|
${CP} ${FILESDIR}/pkg-rmleaf ${WRKSRC}
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/pkg-rmleaf ${PREFIX}/sbin/pkg-rmleaf
|
|
|
|
.include <bsd.port.mk>
|