mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
Closes: https://github.com/gentoo/gentoo/pull/14307 Signed-off-by: Wim Muskee <wimmuskee@gmail.com> Signed-off-by: David Seifert <soap@gentoo.org>
24 lines
441 B
Bash
24 lines
441 B
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
inherit git-r3
|
|
|
|
DESCRIPTION="FlightGear data files"
|
|
HOMEPAGE="https://www.flightgear.org/"
|
|
EGIT_REPO_URI="git://git.code.sf.net/p/flightgear/fgdata
|
|
git://mapserver.flightgear.org/fgdata"
|
|
EGIT_BRANCH="next"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS=""
|
|
IUSE=""
|
|
|
|
src_install() {
|
|
insinto /usr/share/flightgear
|
|
rm -fr .git
|
|
doins -r *
|
|
}
|