When appropriate:
- Try to use DISTVERSION{SUF,PRE}FIX
- Replace PORTNAME-PORTVERSION by DISTNAME
- Convert MASTER_SITES to use macros
- Other light cleanup
With hat: portmgr
Sponsored by: Absolight
25 lines
501 B
Makefile
25 lines
501 B
Makefile
# Created by: Yuki SHIMAZU <y.shimazu@nifty.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= fpkg
|
|
PORTVERSION= 0.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://voodoo.bawue.com/download/ \
|
|
http://www.shimazu.org/fpkg/
|
|
EXTRACT_SUFX=
|
|
EXTRACT_ONLY=
|
|
|
|
MAINTAINER= y.shimazu@nifty.com
|
|
COMMENT= Package Tool Wrapper for FreeBSD
|
|
|
|
USES= perl5
|
|
NO_WRKSUBDIR= YES
|
|
NO_BUILD= YES
|
|
PLIST_FILES= bin/fpkg
|
|
|
|
do-install:
|
|
@${INSTALL_SCRIPT} ${DISTDIR}/${DISTNAME} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
|
|
|
|
.include <bsd.port.mk>
|