pentoo-overlay/app-forensics/xmount/xmount-0.7.5.ebuild
2017-07-22 08:03:38 +08:00

28 lines
654 B
Bash

# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit eutils cmake-utils
DESCRIPTION="Convert on-the-fly between multiple input and output harddisk image types"
HOMEPAGE="https://www.pinguin.lu/xmount"
SRC_URI="https://files.pinguin.lu/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
IUSE="+aff +ewf"
KEYWORDS="~amd64 ~x86 ~arm"
RDEPEND="sys-fs/fuse:*
aff? ( app-forensics/afflib )
ewf? ( app-forensics/libewf )"
DEPEND="${RDEPEND}
virtual/pkgconfig"
#prepare: we might need files/cmake_c_flags patch on hardened
src_configure() {
CMAKE_BUILD_TYPE=Release
cmake-utils_src_configure
}