diff options
Diffstat (limited to 'app-arch/makeself/makeself-2.1.1.ebuild')
-rw-r--r-- | app-arch/makeself/makeself-2.1.1.ebuild | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/app-arch/makeself/makeself-2.1.1.ebuild b/app-arch/makeself/makeself-2.1.1.ebuild new file mode 100644 index 000000000000..359b03683203 --- /dev/null +++ b/app-arch/makeself/makeself-2.1.1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/makeself/makeself-2.1.1.ebuild,v 1.1 2003/06/27 22:29:25 vapier Exp $ + +DESCRIPTION="shell script that generates a self-extractible tar.gz" +HOMEPAGE="http://www.megastep.org/makeself/" +SRC_URI="http://www.megastep.org/makeself/${P}.run" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +DEPEND="" +RDEPEND="" + +S=${WORKDIR} + +src_unpack() { + tail +345 ${DISTDIR}/${A} | gzip -cd | tar -xf - +} + +src_install() { + dobin makeself-header.sh makeself.sh + dodoc README TODO makeself.lsm +} |