diff --git a/talimatname/genel/efibootmgr/talimat b/talimatname/genel/efibootmgr/talimat new file mode 100644 index 000000000..c15c2e3df --- /dev/null +++ b/talimatname/genel/efibootmgr/talimat @@ -0,0 +1,16 @@ +# Description: Tool to modify UEFI Firmware Boot Manager Variables. +# URL: https://github.com/rhinstaller/efibootmgr +# Packager: alihan-ozturk28@hotmail.com +# Depends on: efivar + +name=efibootmgr +version=0.12.1 +release=1 +source=(https://crux.nu/~tek/${name}-${version}.tar.xz) + +build() { + cd $name-$version + make EXTRA_CFLAGS="-Os" + install -D src/efibootmgr $PKG/usr/sbin/efibootmgr + install -D src/efibootmgr.8 $PKG/usr/man/man8/efibootmgr.8 +} diff --git a/talimatname/genel/efivar/talimat b/talimatname/genel/efivar/talimat new file mode 100644 index 000000000..2cec78057 --- /dev/null +++ b/talimatname/genel/efivar/talimat @@ -0,0 +1,19 @@ +# Description: Tools and library to manipulate EFI variables. +# URL: https://github.com/rhinstaller/efivar +# Packager: alihan-ozturk28@hotmail.com +# Depends on: popt + +name=efivar +version=0.24 +release=1 + +source=( https://github.com/rhinstaller/$name/releases/download/$version/$name-$version.tar.bz2) + +build() { +cd $name-$version +make libdir="/usr/lib/" bindir="/usr/bin/" mandir="/usr/share/man/" includedir="/usr/include/" V=1 -j1 +cd src/test +make libdir="/usr/lib/" bindir="/usr/bin/" mandir="/usr/share/man/" includedir="/usr/include/" V=1 -j1 +cd .. +make -j1 V=1 DESTDIR=$PKG libdir="/usr/lib/" bindir="/usr/bin/" mandir="/usr/share/man/" includedir="/usr/include/" install +}