mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
41 lines
1,023 B
Bash
41 lines
1,023 B
Bash
# Maintainer: Kevin Mihelich <kevin@archlinuxarm.org
|
|
# Contributor: Justin Settle <jus10 at partlycloudy dot org>
|
|
|
|
buildarch=12
|
|
|
|
pkgname=vboot-utils
|
|
pkgver=r1908.4c84e0778
|
|
pkgrel=1
|
|
arch=('armv7h' 'aarch64')
|
|
pkgdesc="Chromium OS vboot utilities"
|
|
url="https://chromium.googlesource.com/chromiumos/platform/vboot_reference/+/master"
|
|
license=('custom:chromiumos')
|
|
makedepends=('libyaml' 'git')
|
|
provides=('cgpt')
|
|
replaces=('cgpt')
|
|
source=("git+https://chromium.googlesource.com/chromiumos/platform/vboot_reference"
|
|
'0001-Remove-static-futility.patch')
|
|
md5sums=('SKIP'
|
|
'4623286d277f73b0a5ae04c30174e520')
|
|
|
|
pkgver() {
|
|
cd vboot_reference
|
|
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
|
|
}
|
|
|
|
prepare() {
|
|
cd vboot_reference
|
|
git apply ../0001-Remove-static-futility.patch
|
|
# remove -Werror to prevent build failure
|
|
sed -i 's/-Werror//g' Makefile
|
|
}
|
|
|
|
build() {
|
|
cd vboot_reference
|
|
ARCH=arm make V=1
|
|
}
|
|
|
|
package() {
|
|
cd vboot_reference
|
|
make DESTDIR="${pkgdir}/usr" install
|
|
}
|