xmount: v0.7.6 bump

This commit is contained in:
blshkv 2018-04-04 08:16:51 +08:00
parent dac1c0f4f8
commit 9cb94c3cdb
No known key found for this signature in database
GPG key ID: 273E3E90D1A6294F
2 changed files with 37 additions and 1 deletions

View file

@ -1 +1 @@
DIST xmount-0.7.5.tar.gz 115838 SHA256 9e159e8eee272c5c884c6d739e0e6dda0894d6df0574ea3136b675bfee406823 SHA512 729ac5062d3111fee561d33b08f5afc399c8dcada2045514c17259f9da0510c28d006045d844720cc8bc4f2580a3075d605ab5cd20a37bfb1aab8449ec72fc69 WHIRLPOOL da9453d185d07dde052bbedc8380206478dacf5bf59f1290b4a8176845ac128a676ca52d9eb3de01b8b0587a83f6475f00c502f32bd2440761ab12003b3d23d0
DIST xmount-0.7.5.tar.gz 115838 BLAKE2B 42479794c1e7a1c140dd31514bec8f38aed9490833c626a7c63b46f68f71b3a04abcb3c908baa7557b43f9eebcee6009e2437c8cf83ac7d564a8693c0d9bdcb1 SHA512 729ac5062d3111fee561d33b08f5afc399c8dcada2045514c17259f9da0510c28d006045d844720cc8bc4f2580a3075d605ab5cd20a37bfb1aab8449ec72fc69

View file

@ -0,0 +1,36 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit eutils cmake-utils git-r3
DESCRIPTION="Convert on-the-fly between multiple input and output harddisk image types"
HOMEPAGE="https://www.pinguin.lu/xmount"
#workaround: no tar ball for this release
#SRC_URI="https://files.pinguin.lu/${P}.tar.gz"
EGIT_REPO_URI="https://code.pinguin.lu/diffusion/XMOUNT"
EGIT_MIN_CLONE_TYPE=single
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"
S="${WORKDIR}/${P}/tags/${P}"
src_unpack(){
git-r3_fetch ${EGIT_REPO_URI} "refs/tags/v${PV}"
git-r3_checkout ${EGIT_REPO_URI} "" "" "tags/xmount-${PV}"
}
src_configure() {
CMAKE_BUILD_TYPE=Release
cmake-utils_src_configure
}