summaryrefslogtreecommitdiff
path: root/core/efivar
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 /core/efivar
downloadports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'core/efivar')
-rw-r--r--core/efivar/.footprint35
-rw-r--r--core/efivar/.signature6
-rw-r--r--core/efivar/MAKEPKG40
3 files changed, 81 insertions, 0 deletions
diff --git a/core/efivar/.footprint b/core/efivar/.footprint
new file mode 100644
index 0000000..eda78e7
--- /dev/null
+++ b/core/efivar/.footprint
@@ -0,0 +1,35 @@
+drwxr-xr-x root/root bin/
+-rwxr-xr-x root/root bin/efisecdb
+-rwxr-xr-x root/root bin/efivar
+drwxr-xr-x root/root include/
+drwxr-xr-x root/root include/efivar/
+-rw-r--r-- root/root include/efivar/efiboot-creator.h
+-rw-r--r-- root/root include/efivar/efiboot-loadopt.h
+-rw-r--r-- root/root include/efivar/efiboot.h
+-rw-r--r-- root/root include/efivar/efisec-secdb.h
+-rw-r--r-- root/root include/efivar/efisec-types.h
+-rw-r--r-- root/root include/efivar/efisec.h
+-rw-r--r-- root/root include/efivar/efivar-dp.h
+-rw-r--r-- root/root include/efivar/efivar-guids.h
+-rw-r--r-- root/root include/efivar/efivar-time.h
+-rw-r--r-- root/root include/efivar/efivar-types.h
+-rw-r--r-- root/root include/efivar/efivar.h
+drwxr-xr-x root/root lib/
+-rwxr-xr-x root/root lib/libefiboot.so.1.39
+-rwxr-xr-x root/root lib/libefisec.so.1.39
+-rwxr-xr-x root/root lib/libefivar.so.1.39
+lrwxrwxrwx root/root lib/libefiboot.so -> libefiboot.so.1.39
+lrwxrwxrwx root/root lib/libefiboot.so.1 -> libefiboot.so.1.39
+lrwxrwxrwx root/root lib/libefisec.so -> libefisec.so.1.39
+lrwxrwxrwx root/root lib/libefisec.so.1 -> libefisec.so.1.39
+lrwxrwxrwx root/root lib/libefivar.so -> libefivar.so.1.39
+lrwxrwxrwx root/root lib/libefivar.so.1 -> libefivar.so.1.39
+drwxr-xr-x root/root lib/pkgconfig/
+-rw-r--r-- root/root lib/pkgconfig/efiboot.pc
+-rw-r--r-- root/root lib/pkgconfig/efisec.pc
+-rw-r--r-- root/root lib/pkgconfig/efivar.pc
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man1/
+-rw-r--r-- root/root usr/share/man/man1/efivar.1.gz
diff --git a/core/efivar/.signature b/core/efivar/.signature
new file mode 100644
index 0000000..47f1904
--- /dev/null
+++ b/core/efivar/.signature
@@ -0,0 +1,6 @@
+RWTZ9IduCSQ/mA/uPCYwl3rNYzyPkcnoVjSVBv8fxH5BeEp3hemUz6YIEJKtMHMTXam9LGRktL77G/psK+b7fCpLh0G0syVGEAE=
+
+SHA256 (MAKEPKG) = 394deb298f9c00a7d82febae60f4347a45ca42c842cf3af175a4c60f37cb3e5f
+SHA256 (.footprint) = c025dc6f51eaa882e6a7525ee62cefdb8d837884e29c3456f8095d9ed56328ce
+SHA256 (efivar-39.tar.gz) = c9edd15f2eeeea63232f3e669a48e992c7be9aff57ee22672ac31f5eca1609a6
+SHA256 (efivar#39-1.pkg.tar.gz) = 0090d7ef2bc392b16274ed0b8fb5bac6f946c9ee26149717a85689045f1ffe3b
diff --git a/core/efivar/MAKEPKG b/core/efivar/MAKEPKG
new file mode 100644
index 0000000..405d513
--- /dev/null
+++ b/core/efivar/MAKEPKG
@@ -0,0 +1,40 @@
+#!/bin/mkpkg
+# description: Tools and libraries to work with EFI variables
+# url: https://github.com/rhboot/efivar
+
+name=efivar
+version=39
+release=1
+source=(https://github.com/rhboot/$name/archive/$version/$name-$version.tar.gz)
+
+sha256sums=(
+ "c9edd15f2eeeea63232f3e669a48e992c7be9aff57ee22672ac31f5eca1609a6"
+)
+
+build() {
+ cd $name-$version
+
+ # Fix -Werror with clang
+ sed -i 's/-Werror//' src/include/defaults.mk
+
+ make CC=clang ENABLE_DOCS=0 \
+ libdir=/lib \
+ includedir=/include \
+ bindir=/bin
+
+ make install CC=clang ENABLE_DOCS=0 \
+ DESTDIR=$PKG \
+ libdir=/lib \
+ includedir=/include \
+ bindir=/bin
+
+ install -d $PKG/usr/share/man/man1
+ install -m644 docs/efivar.1 $PKG/usr/share/man/man1/
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh