about summary refs log tree commit diff stats
path: root/linux/ports/dracut/Pkgfile
diff options
context:
space:
mode:
authorSilvino Silva <silvino@bk.ru>2021-02-12 03:59:34 +0000
committerSilvino Silva <silvino@bk.ru>2021-02-12 03:59:34 +0000
commita3628fc49db4d88ff3e4067268650710d1da3f6f (patch)
tree8fdac6dfc8cabb9f85a2db3a3bd628cfe44438cd /linux/ports/dracut/Pkgfile
parent0a6b0fc9769daf0932cb207c3285baa31547b489 (diff)
downloaddoc-a3628fc49db4d88ff3e4067268650710d1da3f6f.tar.gz
initial openbsd support
Diffstat (limited to 'linux/ports/dracut/Pkgfile')
-rw-r--r--linux/ports/dracut/Pkgfile25
1 files changed, 25 insertions, 0 deletions
diff --git a/linux/ports/dracut/Pkgfile b/linux/ports/dracut/Pkgfile
new file mode 100644
index 0000000..e187214
--- /dev/null
+++ b/linux/ports/dracut/Pkgfile
@@ -0,0 +1,25 @@
+# Description:  dracut is an event driven initramfs infrastructure. 
+# URL:          https://dracut.wiki.kernel.org/
+# Maintainer:   Silvino Silva, silvino at bk dot ru
+# Depends on:   cryptsetup nbd nfs-utils lvm2 mdadm
+
+name=dracut
+version=044
+release=2
+source=(https://www.kernel.org/pub/linux/utils/boot/$name/$name-$version.tar.xz
+dracut.conf README)
+
+build() {
+    cd $name-$version
+
+    ./configure --prefix=/usr
+
+    make
+    make DESTDIR=$PKG install
+
+    install -m 0644 -D $SRC/dracut.conf $PKG/etc
+
+    mv $PKG/usr/share/man $PKG/usr/
+    find $PKG -name "README" | xargs rm
+
+}