eth0s/ports/core/lfs-bootscripts/Pkgfile
2019-11-04 15:46:54 +08:00

26 lines
600 B
Text
Executable file

# Description: A set of scripts to start/stop the LFS system at bootup/shutdown
# URL:
# Maintainer:
# Depends on:
name=lfs-bootscripts
version=20191031
release=1
source=(http://www.linuxfromscratch.org/lfs/downloads/development/$name-$version.tar.xz
lfs-bootscripts_add-support-uefi.patch
clock
console
inittab)
build() {
install -d $PKG/etc/sysconfig
install -m0644 clock $PKG/etc/sysconfig
install -m0644 console $PKG/etc/sysconfig
install -m0644 inittab $PKG/etc
cd $name-$version
patch -Np1 -i $SRC/lfs-bootscripts_add-support-uefi.patch
make DESTDIR=$PKG install
}