mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-16 16:25:23 +01:00
14 lines
295 B
Bash
14 lines
295 B
Bash
src_configure() {
|
|
./configure --prefix="${PREFIX}" \
|
|
--without-pam
|
|
}
|
|
|
|
src_compile() {
|
|
make -f GNUmakefile "${MAKEJOBS}" PREFIX="${PREFIX}"
|
|
}
|
|
|
|
src_install() {
|
|
make -f GNUmakefile install PREFIX="${PREFIX}" DESTDIR="${DESTDIR}"
|
|
|
|
ln -s doas "${DESTDIR}${PREFIX}/bin/sudo"
|
|
}
|