34 lines
671 B
Bash
34 lines
671 B
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit autotools
|
|
|
|
DESCRIPTION="Gneral tools for Embedded Dev"
|
|
HOMEPAGE="https://github.com/devkitPro/general-tools"
|
|
SRC_URI="https://github.com/devkitPro/general-tools/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~arm ~ppc sparc x86"
|
|
IUSE=""
|
|
|
|
RDEPEND=""
|
|
DEPEND=""
|
|
|
|
src_prepare() {
|
|
default
|
|
eautoreconf
|
|
}
|
|
|
|
#src_configure() {
|
|
# LIBS="$($(tc-getPKG_CONFIG) --libs ncurses)" econf --enable-shared --with-pic \
|
|
# $(use_enable static) \
|
|
# $(use_enable nls)
|
|
#}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install
|
|
}
|