summaryrefslogtreecommitdiff
path: root/repo/system/efivar.xibuild
blob: 0d52229c657b6a85338bdff50ba80e9a496d6c6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash

DEPS=()

PKG_VER=37
SOURCE=https://github.com/rhboot/efivar/releases/download/$PKG_VER/efivar-$PKG_VER.tar.bz2
DESC="Tools and libraries to manupulate EFI variables"

prepare () {
    curl -SsL https://www.linuxfromscratch.org/patches/blfs/svn/efivar-$PKG_VER-gcc_9-1.patch > efivar-$PKG_VER.patch
    patch -Np1 -i efivar-$PKG_VER.patch
}

build () {
    make CFLAGS="-O2 -Wno-stringop-truncation"
}

package () {
    make LIBDIR=/usr/lib DESTDIR=$PKG_DEST install 
}