blob: a6a716a12b2d9b43c8d3f150ec4806046cb22bf4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
DEPS=(sh udev)
PKG_VER=20210608
SOURCE=https://www.linuxfromscratch.org/lfs/downloads/development/lfs-bootscripts-$PKG_VER.tar.xz
DESC="Bootscripts to initiate the system on boot (from lfs)"
package () {
make DESTDIR=$PKG_DEST install
}
|