# 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/releases/download/v${PV}/general-tools-${PV}.tar.xz" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ~arm ~ppc sparc x86" IUSE="" RDEPEND="" DEPEND="" #src_prepare() { # eapply_user # eautoreconf #} #src_configure() { # LIBS="$($(tc-getPKG_CONFIG) --libs ncurses)" econf --enable-shared --with-pic \ # $(use_enable static) \ # $(use_enable nls) #} src_install() { make DESTDIR="${D}" install || die "make install failed" }