21 lines
472 B
Text
Executable file
21 lines
472 B
Text
Executable file
# Description: Tools and library to manipulate EFI variables
|
|
# URL:
|
|
# Maintainer: Emmett1, emmett1 dot 2miligrams at gmail dot com
|
|
# Depends on: popt
|
|
|
|
name=efivar
|
|
version=38
|
|
release=1
|
|
source=(https://github.com/rhboot/efivar/releases/download/$version/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
# faking mandoc
|
|
mkdir bin
|
|
ln -s /bin/true bin/mandoc
|
|
export PATH=$PWD/bin:$PATH
|
|
|
|
make -j1
|
|
make libdir=/usr/lib DESTDIR=$PKG install
|
|
}
|