]> Arthur Taft Gitweb - custom-tools.git/blobdiff - app-crypt/stegseek/stegseek-0.6.ebuild
add stegseek
[custom-tools.git] / app-crypt / stegseek / stegseek-0.6.ebuild
diff --git a/app-crypt/stegseek/stegseek-0.6.ebuild b/app-crypt/stegseek/stegseek-0.6.ebuild
new file mode 100644 (file)
index 0000000..25ab630
--- /dev/null
@@ -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