diff options
Diffstat (limited to 'app-pda/dynamite/dynamite-0.1.ebuild')
-rw-r--r-- | app-pda/dynamite/dynamite-0.1.ebuild | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/app-pda/dynamite/dynamite-0.1.ebuild b/app-pda/dynamite/dynamite-0.1.ebuild new file mode 100644 index 000000000000..76029e893376 --- /dev/null +++ b/app-pda/dynamite/dynamite-0.1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-pda/dynamite/dynamite-0.1.ebuild,v 1.1 2003/09/22 14:05:43 abhishek Exp $ + +DESCRIPTION="Lib to unpack InstallShield .exe files" +HOMEPAGE="http://sourceforge.net/projects/synce/" +SRC_URI="mirror://sourceforge/synce/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="" + +src_compile() { + econf + emake || die +} + +src_install() { + make DESTDIR=${D} install || die + dodoc README +} |