diff options
author | Marcus Alves Grando <mnag@FreeBSD.org> | 2005-09-28 16:37:35 +0000 |
---|---|---|
committer | Marcus Alves Grando <mnag@FreeBSD.org> | 2005-09-28 16:37:35 +0000 |
commit | 073d5a597874a8cac6004d6cff7fb1514db38265 (patch) | |
tree | 73ad436fd1fba10bd3279a3f36e2ead835eeee1d /archivers/deb2targz/Makefile | |
parent | Update to 2.2.8 (diff) |
New port
deb2targz is a very small perl script for converting Debian Linux .deb packages
to a .tar.gz. deb2targz does not need any external programs like 'ar' or 'tar'.
PR: 86641
Submitted by: Emanuel Haupt <ehaupt@critical.ch>
Approved by: pav (mentor)
Notes
Notes:
svn path=/head/; revision=143711
Diffstat (limited to 'archivers/deb2targz/Makefile')
-rw-r--r-- | archivers/deb2targz/Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/archivers/deb2targz/Makefile b/archivers/deb2targz/Makefile new file mode 100644 index 000000000000..b847e9607cfa --- /dev/null +++ b/archivers/deb2targz/Makefile @@ -0,0 +1,29 @@ +# New ports collection makefile for: deb2targz +# Date created: 27 Sep 2005 +# Whom: Emanuel Haupt <ehaupt@critical.ch> +# +# $FreeBSD$ +# + +PORTNAME= deb2targz +PORTVERSION= 20021217 +CATEGORIES= archivers perl5 +MASTER_SITES= http://critical.ch/distfiles/ + +MAINTAINER= ehaupt@critical.ch +COMMENT= A command-line utility for converting a Debian .deb file to a .tar.gz + +USE_PERL5= yes +USE_REINPLACE= yes +NO_BUILD= yes + +PLIST_FILES= bin/deb2targz + +post-patch: + @${REINPLACE_CMD} -e 's|/usr/bin/perl|${PERL}|' \ + ${WRKSRC}/${PORTNAME} + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + +.include <bsd.port.mk> |