mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-02 01:18:08 +01:00
11 lines
229 B
Bash
11 lines
229 B
Bash
# SPDX-FileCopyrightText: 2026 Samuel Tyler <samuel@samuelt.me>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
src_configure() {
|
|
perl Makefile.PL
|
|
}
|
|
|
|
src_install() {
|
|
make DESTDIR="$DESTDIR" PREFIX="$PREFIX" pure_install
|
|
}
|