efivar-efibootmgr.paketlendi

This commit is contained in:
giresun28 2016-08-01 20:05:20 +00:00
parent 24f23f9c91
commit 2474122d49
2 changed files with 35 additions and 0 deletions

View File

@ -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
}

View File

@ -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
}