mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-05 19:11:57 +02:00
24 lines
537 B
Bash
24 lines
537 B
Bash
# Copyright 1999-2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
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 ~x86"
|
|
IUSE="python"
|
|
|
|
DEPEND="dev-libs/openssl:0="
|
|
RDEPEND="${DEPEND}"
|
|
PDEPEND="python? ( ~dev-python/yara-python-${PV} )"
|
|
|
|
src_prepare() {
|
|
eautoreconf
|
|
eapply_user
|
|
}
|