blob: 7d8c98cd82d0546437a9673a117ef40669b05cc9 (
plain)
1 # Description: Tools and library to manipulate EFI variables
2 # URL: https://github.com/rhinstaller/efivar
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Depends on: popt
5
6 name=efivar
7 version=37
8 release=1
9 source=(https://github.com/rhinstaller/$name/releases/download/$version/$name-$version.tar.bz2)
10
11 build() {
12 cd $name-$version
13 make -j1
14 make libdir=/usr/lib DESTDIR=$PKG install
15 }
|