diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2021-01-09 14:44:07 +0100 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2021-01-09 15:29:16 +0100 |
commit | c105e59b66018b66026532462aad8375bcc1f136 (patch) | |
tree | f6f36416ac3c5802fd1caea66605885f2368f47d /dev-lua/luacov/luacov-0.8.ebuild | |
parent | dev-lua/penlight: fix HOMEPAGE (diff) | |
download | gentoo-c105e59b66018b66026532462aad8375bcc1f136.tar.gz gentoo-c105e59b66018b66026532462aad8375bcc1f136.tar.bz2 gentoo-c105e59b66018b66026532462aad8375bcc1f136.zip |
dev-lua/luacov: drop old version
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'dev-lua/luacov/luacov-0.8.ebuild')
-rw-r--r-- | dev-lua/luacov/luacov-0.8.ebuild | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/dev-lua/luacov/luacov-0.8.ebuild b/dev-lua/luacov/luacov-0.8.ebuild deleted file mode 100644 index 97c531edf6c9..000000000000 --- a/dev-lua/luacov/luacov-0.8.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit eutils - -DESCRIPTION="LuaCov is a simple coverage analyzer for Lua scripts" -HOMEPAGE="https://github.com/keplerproject/luacov" -SRC_URI="https://github.com/keplerproject/luacov/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" - -COMMON_DEPEND=">=dev-lang/lua-5.1:0=" -DEPEND="${COMMON_DEPEND} -virtual/pkgconfig" -RDEPEND="${COMMON_DEPEND}" - -src_prepare() { - epatch "${FILESDIR}"/${PF}-fix-makefile.patch -} - -src_compile() { - return 0 -} - -src_install() { - emake DESTDIR="${ED}" \ - PREFIX=/usr \ - LUADIR="$(pkg-config --variable INSTALL_LMOD lua)" install -dohtml -r doc/* - dodoc -r examples -} |