mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-09 06:51:44 +00:00
f7548d9bc6
Unfoo is a tiny sh(1) wrapper to simplify decompression of files. Supported archive types: tar, gzip, bzip2, ace, rar, zip, 7z. WWW: http://obsoleet.org/code/unfoo/ Author: Graham Forest <vitaminmoo@wza.us> Based on: Gentoo Portage
33 lines
764 B
Makefile
33 lines
764 B
Makefile
# New ports collection makefile for: unfoo
|
|
# Date created: 13 August 2007
|
|
# Whom: Andrew Pantyukhin <infofarmer@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= unfoo
|
|
PORTVERSION= 1.0.6
|
|
CATEGORIES= archivers
|
|
MASTER_SITES= CENKES
|
|
#http://obsoleet.org/code/unfoo/unfoo-1.0.6.sh
|
|
|
|
MAINTAINER= infofarmer@FreeBSD.org
|
|
COMMENT= Tiny sh(1) wrapper to simplify decompression of files
|
|
|
|
RUN_DEPENDS= unace:${PORTSDIR}/archivers/unace \
|
|
unrar:${PORTSDIR}/archivers/unrar \
|
|
unzip:${PORTSDIR}/archivers/unzip \
|
|
7z:${PORTSDIR}/archivers/p7zip
|
|
|
|
NO_BUILD= yes
|
|
USE_BZIP2= yes
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '1s|/.*|/bin/sh|;s|==|=|' ${WRKSRC}/${PORTNAME}
|
|
|
|
do-install:
|
|
@${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/
|
|
|
|
.include <bsd.port.mk>
|