blob: 31190ef04c57cb9b58659ea8775910bcb3b0a63f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/bash
DEPS=()
DESC="An initramfs infastructure aimin gto have as little possible hardcoded into the initramfs"
PKG_VER=055
SOURCE=https://mirrors.edge.kernel.org/pub/linux/utils/boot/dracut/dracut-$PKG_VER.tar.xz
build () {
make sysconfdir=/etc
}
package () {
make DESTDIR="$PKG_DEST" sysconfdir=/etc install
}
|