Compare commits

..

No commits in common. "b55556604f68d0ca218d66f1c5b1b64af59e6bb5" and "13706428c65cebd2735c65282a2b1bdc9583d5f2" have entirely different histories.

5 changed files with 9 additions and 41 deletions

3
.gitignore vendored
View File

@ -1,3 +0,0 @@
arch/*/pkg/
arch/*/src/
arch/*/*.pkg.tar.*

View File

@ -1 +1,3 @@
pkg
src
coreboot-configurator* coreboot-configurator*

View File

@ -1,33 +1,30 @@
# Maintainer: Alexander Rosenberg <zanderpkg at pm dot me> # Maintainer: Alexander Rosenberg <zanderpkg at pm dot me>
_pkgname=coreboot-configurator pkgname=coreboot-configurator
pkgname=$_pkgname-git pkgver=51
pkgver=11.0.gb27400d
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')
provides=("$_pkgname")
license=('GPL2') license=('GPL2')
makedepends=('ninja' 'meson' 'git') depends=('coreboot-utils-git' 'yaml-cpp' 'meson' 'qt5-base' 'ninja')
depends=('nvramtool' 'yaml-cpp' 'qt5-base')
source=('git+https://github.com/StarLabsLtd/coreboot-configurator.git') source=('git+https://github.com/StarLabsLtd/coreboot-configurator.git')
sha256sums=('SKIP') sha256sums=('SKIP')
pkgver(){ pkgver(){
cd "$_pkgname" cd "$pkgname"
git describe --tags --long | sed 's#-#.#g' git rev-list --count HEAD
} }
build() { build() {
cd "$_pkgname" cd "$pkgname"
meson setup build/ meson setup build/
ninja -C build all ninja -C build all
} }
package() { package() {
cd "$_pkgname" cd "$pkgname"
export DESTDIR="$pkgdir" export DESTDIR="$pkgdir"
ninja -C build install ninja -C build install

View File

@ -1 +0,0 @@
coreboot/

View File

@ -1,27 +0,0 @@
# Maintainer: Alexander Rosenberg <zanderpkg at pm dot me>
_pkgname='nvramtool'
pkgname=$_pkgname-git
pkgver=4.20.77.ga398b31108
pkgrel=1
pkgdesc='Coreboot cli utility for modifying NVRAM'
url='https://coreboot.org'
arch=('x86_64')
license=('GPL2')
provides=('nvramtool')
makedepends=('git')
source=('git+https://github.com/coreboot/coreboot.git')
sha256sums=('SKIP')
pkgver(){
cd "coreboot"
git describe --tags --long | sed 's#-#.#g'
}
build() {
make -C 'coreboot/util/nvramtool'
}
package() {
install -Dt "$pkgdir/usr/bin/" "coreboot/util/nvramtool/nvramtool"
}