linamh/dev-util/general-tools/general-tools-1.0.3.ebuild

34 lines
712 B
Bash
Raw Normal View History

2022-11-26 22:54:07 +01:00
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
2023-07-20 20:28:34 +02:00
EAPI=8
2022-11-26 22:54:07 +01:00
2023-07-20 20:28:34 +02:00
inherit autotools
2022-11-26 22:54:07 +01:00
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"
}