diff options
Diffstat (limited to 'dev-cpp/MEL/MEL-1.0.0-r1.ebuild')
-rw-r--r-- | dev-cpp/MEL/MEL-1.0.0-r1.ebuild | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/dev-cpp/MEL/MEL-1.0.0-r1.ebuild b/dev-cpp/MEL/MEL-1.0.0-r1.ebuild deleted file mode 100644 index c666a6ffd..000000000 --- a/dev-cpp/MEL/MEL-1.0.0-r1.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit toolchain-funcs - -DESCRIPTION="Math Expression Library" -HOMEPAGE="https://github.com/pcarruscag/MEL" -SRC_URI="https://github.com/pcarruscag/MEL/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="LGPL-3" -SLOT="0/${PV}" -KEYWORDS="~amd64" -IUSE="test" - -RESTRICT="!test? ( test )" - -src_compile() { - tc-export CXX - if use test; then - "${CXX}" ${CXXFLAGS} ${LDFLAGS} -fPIE -std=c++11 -I. ./tests.cpp -o ./tests || die - fi -} - -src_install() { - insinto "/usr/include/${PN}" - doins mel.hpp definitions.hpp - dodoc README.md -} - -src_test() { - ./tests || die -} |