Add dev tools

This commit is contained in:
Mario Fetka
2022-11-26 22:54:07 +01:00
parent 80c8429421
commit f90a215a8d
7 changed files with 128 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
DIST general-tools-1.0.3.tar.xz 100600 BLAKE2B a5610147d1ddcbab815db13fad1d125aa1adaa03a1efc8bc8b78e30b089369276baf224377a7a8027797533217cbe4dddc588bc467c64e13322d0aa326a1379b SHA512 68dfb4b89073c615a9a7e9cdc4bc780c27eccb5e52df3a9e6f0da0b4a8a01807b0f5db584dc53ff2a2ad4b086728cfbfa794155d2576deec930e115e0fe215c2
EBUILD general-tools-1.0.3.ebuild 721 BLAKE2B fedf2f941a47da751fc5b2387f1e191866c1b97482b8438d86d8e66becba3dc0a28c51b25a27bb9e961aa6b919c665b4b0393a5fc341386b831244908fc9479f SHA512 eda33e5d20bc0a3adcf168ac79d062b2436f6e3e5a82626cbbf9eb4bbfedae8144913410241dca2d9afc340156673d7d1dd9b0ac26af801658e1ff3a8d64962c

View File

@@ -0,0 +1,33 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
inherit eutils 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"
}