1
0
mirror of synced 2024-07-01 08:42:51 +02:00
TheChymera-overlay/sci-biology/ants/ants-9999.ebuild
Horea Christian 5384166737
sci-biology/ants: fixes ahead of Gentoo Science
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Horea Christian <horea.christ@yandex.com>
2019-03-25 04:03:48 +01:00

29 lines
672 B
Bash

# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit cmake-utils git-r3 multilib
DESCRIPTION="Advanced Normalitazion Tools for neuroimaging"
HOMEPAGE="http://stnava.github.io/ANTs/"
SRC_URI=""
EGIT_REPO_URI="https://github.com/stnava/ANTs.git"
SLOT="0"
LICENSE="BSD"
KEYWORDS=""
DEPEND=">=dev-util/cmake-3.10.3"
RDEPEND=""
src_install() {
cd "${WORKDIR}/${P}_build/ANTS-build" || die "build dir not found"
default
cd "${WORKDIR}/ANTs-${PV}/Scripts" || die "scripts dir not found"
dobin *.sh
dodir /usr/$(get_libdir)/ants
install -t "${D}"usr/$(get_libdir)/ants *
doenvd "${FILESDIR}"/99ants
}