35 lines
523 B
Bash
35 lines
523 B
Bash
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
inherit cmake-utils git-r3
|
|
|
|
DESCRIPTION="A satellite orbit prediction library"
|
|
HOMEPAGE="https://github.com/la1k/libpredict"
|
|
|
|
SRC_URI=""
|
|
EGIT_REPO_URI="https://github.com/la1k/libpredict.git"
|
|
KEYWORDS=""
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0/${PV}"
|
|
IUSE=""
|
|
|
|
RDEPEND=""
|
|
DEPEND=""
|
|
|
|
REQUIRED_USE=""
|
|
|
|
src_prepare() {
|
|
eapply_user
|
|
}
|
|
|
|
src_configure() {
|
|
cmake-utils_src_configure
|
|
}
|
|
|
|
src_install() {
|
|
cmake-utils_src_install
|
|
}
|