blob: 1411e8404165ed15f679a91b806cbdbc751d3239 (
plain)
1 # Description: Tools and library to manipulate EFI variables
2 # URL: https://github.com/rhinstaller/efivar
3 # Maintainer: CRUX System Team, core-ports at crux dot nu
4 # Depends on: popt
5
6 name=efivar
7 version=37
8 release=2
9 source=(https://github.com/rhinstaller/$name/releases/download/$version/$name-$version.tar.bz2)
10
11 build() {
12 cd $name-$version
13 sed 's/-Werror//' -i gcc.specs
14 make -j1
15 make libdir=/usr/lib DESTDIR=$PKG install
16 }
|