c295cd61be
- remove $/, $| it's artifacts from $rpm = <$f>; time. [this might help in low RAM situations] - change && to and - whitespace cosmetic.
31 lines
567 B
Makefile
31 lines
567 B
Makefile
# $OpenBSD: Makefile,v 1.11 2010/08/22 17:55:38 ajacoutot Exp $
|
|
|
|
COMMENT= rpm2cpio converter in Perl
|
|
|
|
DISTNAME= rpm2cpio-1.3
|
|
CATEGORIES= converters archivers
|
|
|
|
REVISION= 0
|
|
|
|
# BSD
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
|
|
DISTFILES= # empty
|
|
|
|
RUN_DEPENDS= ::archivers/bzip2 \
|
|
::archivers/xz
|
|
|
|
# don't extract, don't build. Install the script directly
|
|
EXTRACT_ONLY= # empty
|
|
NO_BUILD= Yes
|
|
NO_REGRESS= Yes
|
|
PKG_ARCH= *
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${FILESDIR}/rpm2cpio ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|