mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-21 22:30:59 +02:00
yara-4.1.1.ebuild
This commit is contained in:
parent
ab164c4529
commit
9aaae8f74a
2 changed files with 36 additions and 0 deletions
|
|
@ -1,2 +1,3 @@
|
|||
DIST yara-4.0.5.tar.gz 889995 BLAKE2B bc93374b434e9d2c2489a98f3bcf4089eaca2efed2f384f1d1b788eed0d035f911d27f0057059955e2e9b470d3a014b8fa2095d07d39bac9c513c5a5e41ed0e0 SHA512 cedf9d3933b7102d9f65eef939d65e368131f2ee9e8d6a56432746dc7bd64f38b2b3bfec235568ab9210339227d1351ba4d5fa844031a244475930580899e307
|
||||
DIST yara-4.1.0.tar.gz 935770 BLAKE2B d25a7bae7a94464830397af5ff409fa06ad2c04c6521ad907edc864783c6ad93d0ba89142ba87ef8aa681ca4eb3caf1157ee9dc5740197ff99de9880a1807fda SHA512 b4b3d004181f4a5c7f35103082977f72155b1a80bcde84c09c68951b57c9b6cbb1304591172de72bdbd0b5a36c98a4671c5e4d428dfde809df717c32df4e2922
|
||||
DIST yara-4.1.1.tar.gz 936115 BLAKE2B 6edf277702fb40513097195c730002875eef75502e92d672597ca09fefc054c14a082076877e8bea3daaeb05148a9116e2c302ea90a6ce6270e460fce31db658 SHA512 e4474254249d5b3fbb7231fdec5f4e080be042098e1b2bc953aa93513ce0b4742e34acac2911687e75055ecd589d942f71b79c58ca47eee243626ab3ec8add71
|
||||
|
|
|
|||
35
app-forensics/yara/yara-4.1.1.ebuild
Normal file
35
app-forensics/yara/yara-4.1.1.ebuild
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit autotools
|
||||
|
||||
DESCRIPTION="A malware identification and classification tool"
|
||||
HOMEPAGE="http://virustotal.github.io/yara/"
|
||||
SRC_URI="https://github.com/virustotal/yara/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 ~arm64 x86"
|
||||
IUSE="+dex python"
|
||||
|
||||
DEPEND="dev-libs/openssl:0="
|
||||
RDEPEND="${DEPEND}"
|
||||
PDEPEND="python? ( =dev-python/yara-python-4* )"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
econf $(use_enable dex)
|
||||
}
|
||||
|
||||
# --enable-profiling enable rules profiling support
|
||||
# --enable-cuckoo enable cuckoo module
|
||||
# --enable-magic enable magic module
|
||||
# --enable-dotnet enable dotnet module
|
||||
# --enable-macho enable macho module
|
||||
# --enable-debug-dex enable dex module debugging
|
||||
Loading…
Reference in a new issue