summaryrefslogtreecommitdiff
path: root/opt/dracut/MAKEPKG
diff options
context:
space:
mode:
authorrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
committerrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
commitc82e88dd00d1b0b7fcfb4e5628d99611388cef6f (patch)
tree56d864b5a5c6c145edd96178ae219a8f90e191a6 /opt/dracut/MAKEPKG
downloadports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'opt/dracut/MAKEPKG')
-rw-r--r--opt/dracut/MAKEPKG41
1 files changed, 41 insertions, 0 deletions
diff --git a/opt/dracut/MAKEPKG b/opt/dracut/MAKEPKG
new file mode 100644
index 0000000..910ac81
--- /dev/null
+++ b/opt/dracut/MAKEPKG
@@ -0,0 +1,41 @@
+#!/bin/mkpkg
+# description=Event-driven initramfs infrastructure
+# url: https://github.com/dracut-ng/dracut
+
+name=dracut
+version=112
+release=1
+depends=(bash kmod musl-fts cpio)
+makedeps=(pkgconf asciidoctor)
+source=("https://github.com/dracut-ng/dracut/archive/refs/tags/${version}.tar.gz")
+sha256sums=(
+ "839d21eb4bd27bb0ee40d74c9da46df088c2e1425fcd8c3ea62b7e3a3dd28a91"
+)
+
+build() {
+ cd "dracut-${version}"
+ ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --bindir=/usr/bin \
+ --libdir=/usr/lib \
+ --mandir=/usr/share/man \
+ --systemdsystemunitdir= \
+ --configprofile= \
+ --disable-dracut-cpio
+ make DRACUT_MAIN_VERSION="${version}" DRACUT_FULL_VERSION="${version}"
+
+ make DRACUT_MAIN_VERSION="${version}" DRACUT_FULL_VERSION="${version}" \
+ DESTDIR="$PKG" install
+
+ rm -f "$PKG/usr/lib/dracut/modules.d/77initqueue/dracut-initqueue.service.8"
+}
+
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh
+