diff options
author | 2023-04-07 15:51:25 +0100 | |
---|---|---|
committer | 2023-04-28 10:28:34 +0300 | |
commit | 520ac71cd6eb15b6d1b88ce9ce55208f5d0a8fd0 (patch) | |
tree | bbb3557d1b5bbbc4c42d260395c8677eba800063 /app-arch/unshield/unshield-1.5.1.ebuild | |
parent | dev-python/tox: Stabilize 4.4.11 sparc, #904803 (diff) | |
download | gentoo-520ac71cd6eb15b6d1b88ce9ce55208f5d0a8fd0.tar.gz gentoo-520ac71cd6eb15b6d1b88ce9ce55208f5d0a8fd0.tar.bz2 gentoo-520ac71cd6eb15b6d1b88ce9ce55208f5d0a8fd0.zip |
app-arch/unshield: bump to 1.5.1
Signed-off-by: Joseph Matthews <dark@darkok.xyz>
Closes: https://github.com/gentoo/gentoo/pull/30513
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'app-arch/unshield/unshield-1.5.1.ebuild')
-rw-r--r-- | app-arch/unshield/unshield-1.5.1.ebuild | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/app-arch/unshield/unshield-1.5.1.ebuild b/app-arch/unshield/unshield-1.5.1.ebuild new file mode 100644 index 000000000000..5531273c3857 --- /dev/null +++ b/app-arch/unshield/unshield-1.5.1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="InstallShield CAB file extractor" +HOMEPAGE="https://github.com/twogood/unshield" +SRC_URI="https://github.com/twogood/unshield/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86" + +# OpenSSL is detected at build time, and used to determine +# whether or not a hand-rolled md5 implementation is used. The build +# system prefers OpenSSL's implementation if it's available, and OpenSSL +# is common enough, so we prefer it too. Since the dependency is +# automagic (there's no way to hide it), we require OpenSSL +# unconditionally. + +DEPEND=" + dev-libs/openssl:0= + sys-libs/zlib" +RDEPEND="${DEPEND}" |