]> Arthur Taft Gitweb - custom-tools.git/blob - app-crypt/stegseek/stegseek-0.6.ebuild
add librepods
[custom-tools.git] / app-crypt / stegseek / stegseek-0.6.ebuild
1 # Copyright 2025 Gentoo Authors
2 # Copyright 2025 Arthur Taft
3 # Copyright 2021 RickdeJager
4 # Distributed under the terms of the GNU General Public License v2
5
6 EAPI=8
7
8 DESCRIPTION="Cryptography cracker and embedder"
9 HOMEPAGE="https://github.com/RickdeJager/stegseek"
10 SRC_URI="https://github.com/RickdeJager/stegseek/archive/refs/tags/v${PV}.tar.gz"
11
12 LICENSE="GPL-2"
13 SLOT="0"
14 KEYWORDS="~amd64"
15
16 DEPEND="app-crypt/mhash 
17                 dev-libs/libmcrypt 
18                 media-libs/libjpeg-turbo 
19                 sys-libs/zlib 
20                 dev-build/make 
21                 sys-devel/gcc 
22                 dev-build/cmake 
23                 dev-vcs/git"
24 RDEPEND="${DEPEND}"
25 BDEPEND=""
26
27 src_configure() {
28         mkdir -p build && cd build
29         cmake -DCMAKE_BUILD_TYPE=Release ..
30 }
31
32 src_compile() {
33         cd build
34         emake
35 }
36
37 src_install() {
38         cd build
39         emake DESTDIR="${D}" install
40 }