Update coreboot-configurator and nvramtool
This commit is contained in:
parent
b4924966e5
commit
d7c3f7b5b9
@ -1,13 +1,13 @@
|
|||||||
# Maintainer: Alexander Rosenberg <zanderpkg at pm dot me>
|
# Maintainer: Alexander Rosenberg <zanderpkg at pm dot me>
|
||||||
|
|
||||||
pkgname=coreboot-configurator
|
pkgname=coreboot-configurator
|
||||||
pkgver=51
|
pkgver=54
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="A simple GUI to change settings in coreboot's CBFS, via the nvramtool utility."
|
pkgdesc="A simple GUI to change settings in coreboot's CBFS, via the nvramtool utility."
|
||||||
url='https://github.com/StarLabsLtd/coreboot-configurator'
|
url='https://github.com/StarLabsLtd/coreboot-configurator'
|
||||||
arch=('x86_64')
|
arch=('x86_64')
|
||||||
license=('GPL2')
|
license=('GPL2')
|
||||||
depends=('coreboot-utils-git' 'yaml-cpp' 'meson' 'qt5-base' 'ninja')
|
depends=('nvramtool' 'yaml-cpp' 'meson' 'qt5-base' 'ninja')
|
||||||
source=('git+https://github.com/StarLabsLtd/coreboot-configurator.git')
|
source=('git+https://github.com/StarLabsLtd/coreboot-configurator.git')
|
||||||
sha256sums=('SKIP')
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
|
2
arch/nvramtool-git/.gitignore
vendored
Normal file
2
arch/nvramtool-git/.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
coreboot/
|
||||||
|
nvramtool-*
|
26
arch/nvramtool-git/PKGBUILD
Normal file
26
arch/nvramtool-git/PKGBUILD
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
# Maintainer: Alexander Rosenberg <zanderpkg at pm dot me>
|
||||||
|
|
||||||
|
pkgname='nvramtool-git'
|
||||||
|
pkgver=52843
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc='Coreboot cli utility for modifying NVRAM'
|
||||||
|
url='https://coreboot.org'
|
||||||
|
arch=('x86_64')
|
||||||
|
license=('GPL2')
|
||||||
|
provides=('nvramtool')
|
||||||
|
source=('git+https://review.coreboot.org/coreboot.git')
|
||||||
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
|
pkgver(){
|
||||||
|
cd "coreboot"
|
||||||
|
git rev-list --count HEAD
|
||||||
|
}
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd "coreboot/util/nvramtool"
|
||||||
|
make
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
install -Dt "$pkgdir/usr/bin/" "coreboot/util/nvramtool/nvramtool"
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user