# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 inherit eutils DESCRIPTION="Dynamic Kernel Module Support" HOMEPAGE="https://github.com/dell/dkms" LICENSE="GPL-2" DEPEND="" KEYWORDS="~amd64 ~x86" SLOT="0" SRC_URI="https://github.com/dell/dkms/archive/v${PV}.tar.gz -> ${P}.tar.gz" DOCS=( AUTHORS sample.conf sample.spec ) src_prepare() { #Removing gzip compressions in Makefile sed -i '/dkms.8.gz/d' "${S}"/Makefile default } src_compile() { einfo "Skipping compilation" } src_install() { emake install DESTDIR="${D}" LIBDIR="${D}"/usr/$(get_libdir)/ keepdir /var/lib/dkms insinto /var/lib/dkms doins dkms_dbversion keepdir /etc/dkms doins template-dkms-mkrpm.spec einstalldocs }