X-Git-Url: https://gitweb.arthurtaft.net/custom-tools.git/blobdiff_plain/2ccac6b43b15f5fb41de4097372afcbf890f3241..94a1df3f76f4d52ca9eb29533708e1ed2f8b46fc:/app-crypt/stegseek/stegseek-0.6.ebuild?ds=inline diff --git a/app-crypt/stegseek/stegseek-0.6.ebuild b/app-crypt/stegseek/stegseek-0.6.ebuild new file mode 100644 index 0000000..25ab630 --- /dev/null +++ b/app-crypt/stegseek/stegseek-0.6.ebuild @@ -0,0 +1,40 @@ +# Copyright 2025 Gentoo Authors +# Copyright 2025 Arthur Taft +# Copyright 2021 RickdeJager +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Cryptography cracker and embedder" +HOMEPAGE="https://github.com/RickdeJager/stegseek" +SRC_URI="https://github.com/RickdeJager/stegseek/archive/refs/tags/v0.6.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND="app-crypt/mhash + dev-libs/libmcrypt + media-libs/libjpeg-turbo + sys-libs/zlib + dev-build/make + sys-devel/gcc + dev-build/cmake + dev-vcs/git" +RDEPEND="${DEPEND}" +BDEPEND="" + +src_configure() { + mkdir -p build && cd build + cmake -DCMAKE_BUILD_TYPE=Release .. +} + +src_compile() { + cd build + emake +} + +src_install() { + cd build + emake DESTDIR="${D}" install +} \ No newline at end of file