mirror of
https://github.com/mudler/luet.git
synced 2025-09-19 17:54:29 +00:00
26 lines
638 B
Bash
26 lines
638 B
Bash
![]() |
# Copyright 1999-2019 Gentoo Authors
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
EAPI=5
|
||
|
|
||
|
DESCRIPTION="Sabayon Official Calamares base modules"
|
||
|
HOMEPAGE="http://www.sabayon.org/"
|
||
|
SRC_URI="https://github.com/Sabayon/calamares-sabayon/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||
|
LICENSE="CC-BY-SA-4.0"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="~amd64 ~x86"
|
||
|
IUSE=""
|
||
|
|
||
|
DEPEND="app-admin/calamares[networkmanager,upower]"
|
||
|
RDEPEND="${DEPEND}
|
||
|
>=sys-kernel/dracut-049"
|
||
|
|
||
|
S="${WORKDIR}/calamares-sabayon-${PV}"
|
||
|
|
||
|
src_install() {
|
||
|
insinto "/etc/calamares/"
|
||
|
doins -r "${FILESDIR}/modules-conf/"*
|
||
|
insinto "/usr/lib/calamares/modules/"
|
||
|
doins -r "${S}/"*
|
||
|
}
|