blob: bfcbb8e9d6ed84f24cf77b44dc662861edb34512 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# New ports collection makefile for: rpm2cpio
# Date created: Sun Jul 18 21:51:23 MET DST 1999
# Whom: Juergen Lock <nox@jelal.kn-bremen.de>
#
# $FreeBSD$
#
PORTNAME= rpm2cpio
PORTVERSION= 1.2
PORTREVISION= 2
CATEGORIES= archivers
MASTER_SITES= # none
DISTFILES= # none
MAINTAINER= nox@jelal.kn-bremen.de
COMMENT= Convert .rpm files for extraction with /usr/bin/cpio, needs just perl
NO_WRKSUBDIR= yes
USE_PERL5= yes
NO_BUILD= yes
PLIST_FILES= bin/rpm2cpio.pl
do-fetch:
@${DO_NADA}
do-extract:
@${MKDIR} ${WRKSRC}
${PERL5} -p -e "if (1 .. 1) {s-^#!/usr/bin/perl-#!${PERL}-;}" ${FILESDIR}/${PORTNAME} >${WRKDIR}/${PORTNAME}
do-install:
${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${PREFIX}/bin/${PORTNAME}.pl
.include <bsd.port.mk>
|