21 lines
557 B
Bash
21 lines
557 B
Bash
# Template file for 'calamares-modules-cereus'
|
|
pkgname=calamares-modules-cereus
|
|
version=2023.02.14
|
|
revision=2
|
|
hostmakedepends="git"
|
|
_modules_dir="usr/lib/calamares/modules/"
|
|
repository="cereus-core"
|
|
short_desc="Additional Cereus Linux modules for Calamares installer"
|
|
maintainer="Kevin F. <kevinfigueroart@proton.me>"
|
|
license="GPL-2.0"
|
|
homepage="https://github.com/CereusLinuxProject/calamares-modules"
|
|
|
|
do_fetch() {
|
|
git clone ${homepage} ${wrksrc}
|
|
}
|
|
|
|
do_install() {
|
|
vmkdir ${_modules_dir}
|
|
vcopy modules/* ${_modules_dir}
|
|
vlicense LICENSE
|
|
}
|