95798083f2
archivers/makeself. makeself is a (very small) shell script that makes neat self-extracting shell scripts, and allows you to specify a "setup" command to execute upon finishing. This is in a similar concept to Windows winzip self-extracting archives. Noticed in the FreeBSD ports collection.
24 lines
769 B
Makefile
24 lines
769 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2002/11/18 15:20:38 cjep Exp $
|
|
# FreeBSD Id: ports/archivers/makeself/Makefile,v 1.8 2001/07/07 03:47:49 dwcjr Exp
|
|
|
|
DISTNAME= makeself-1.5.3
|
|
CATEGORIES= archivers
|
|
MASTER_SITES= http://linuxberg.tele.net/files/console/file/
|
|
EXTRACT_SUFX= .gz.sh
|
|
|
|
MAINTAINER= packages@netbsd.org
|
|
HOMEPAGE= http://www.lokigames.com/~megastep/makeself/
|
|
COMMENT= neat script to make self-extracting archives
|
|
|
|
EXTRACT_CMD= ${CP} ${DOWNLOADED_DISTFILE} ${WRKDIR}
|
|
NO_BUILD= yes
|
|
|
|
# The DISPLAY thing is to prevent the script from trying to launch a xterm
|
|
# just to extract the source.
|
|
pre-patch:
|
|
(cd ${WRKDIR} && ${SETENV} DISPLAY="" ${SH} ${DISTFILES})
|
|
|
|
do-install:
|
|
@${INSTALL_SCRIPT} ${WRKSRC}/makeself.sh ${PREFIX}/bin/makeself
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|