mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
7e5f84c359
- Set PORTEPOCH Note: With the last update it was mistakenly labeled as 1.0, while the actual version in ports is 0.4. PR: 204076 Submitted by: aeuii@posteo.de Approved by: mat (mentor); maintainer timeout Differential Revision: D4651
31 lines
640 B
Makefile
31 lines
640 B
Makefile
# Created by: Valerio Daelli <valerio.daelli@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= geteltorito
|
|
PORTVERSION= 0.6
|
|
PORTEPOCH= 1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://www.uni-koblenz.de/~krienke/ftp/noarch/geteltorito/
|
|
DISTFILES= ${PORTNAME}.pl
|
|
EXTRACT_ONLY=
|
|
|
|
MAINTAINER= valerio.daelli@gmail.com
|
|
COMMENT= El Torito image extractor
|
|
|
|
NO_BUILD= yes
|
|
USES= perl5 shebangfix
|
|
USE_PERL5= run
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
SHEBANG_FILES= geteltorito.pl
|
|
|
|
do-extract:
|
|
@${MKDIR} ${WRKSRC}
|
|
@${CP} ${DISTDIR}/${DISTFILES} ${WRKSRC}
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.pl \
|
|
${STAGEDIR}${PREFIX}/bin/${PORTNAME}
|
|
|
|
.include <bsd.port.mk>
|