2020-01-11 23:40:19 +01:00
|
|
|
# Copyright 1999-2020 Gentoo Authors
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=7
|
|
|
|
|
|
|
|
inherit check-reqs
|
|
|
|
|
|
|
|
DESCRIPTION="Raw data files released with the IRSABI publication"
|
|
|
|
HOMEPAGE="http://www.aic-fmi.ethz.ch/"
|
2022-04-25 12:08:08 +02:00
|
|
|
SRC_URI="http://resources.chymera.eu/distfiles/${P}.tar.xz"
|
2020-01-11 23:40:19 +01:00
|
|
|
|
|
|
|
LICENSE="CC-BY-SA-4.0"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
|
|
|
|
|
|
|
|
RDEPEND=""
|
|
|
|
DEPEND=""
|
|
|
|
|
|
|
|
pkg_pretend() {
|
|
|
|
CHECKREQS_DISK_BUILD="12G"
|
|
|
|
check-reqs_pkg_pretend
|
|
|
|
}
|
|
|
|
|
|
|
|
# We disable this phase to not check requirements twice.
|
|
|
|
pkg_setup() { :; }
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
insinto "/usr/share/${PN}"
|
|
|
|
doins -r *
|
|
|
|
}
|