diff options
Diffstat (limited to 'repo/system')
-rw-r--r-- | repo/system/bootscripts.xibuild | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/repo/system/bootscripts.xibuild b/repo/system/bootscripts.xibuild new file mode 100644 index 0000000..a6a716a --- /dev/null +++ b/repo/system/bootscripts.xibuild @@ -0,0 +1,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 +} |