summaryrefslogtreecommitdiff
path: root/pcr
diff options
context:
space:
mode:
authorbill-auger <mr.j.spam.me@gmail.com>2023-06-06 04:21:46 -0400
committerbill-auger <mr.j.spam.me@gmail.com>2023-06-10 09:13:13 -0400
commit03e9ca37d1adece917d0ae024fe001cdf6153fc5 (patch)
treeffbf1c1e01a05282598d18d06bc77554788c511a /pcr
parentc1c9af3b5423f06844eb0090db4f080901e297ac (diff)
[flashrom-stable]: use tar-ball source - move to [libre]
Diffstat (limited to 'pcr')
-rw-r--r--pcr/flashrom-stable/PKGBUILD37
1 files changed, 0 insertions, 37 deletions
diff --git a/pcr/flashrom-stable/PKGBUILD b/pcr/flashrom-stable/PKGBUILD
deleted file mode 100644
index 22344a943..000000000
--- a/pcr/flashrom-stable/PKGBUILD
+++ /dev/null
@@ -1,37 +0,0 @@
-# Maintainer (aur): Nico Huber <nico.h@gmx.de>
-# Maintainer: Wael Karram <wael@waelk.tech>
-
-
-# Parabola Changes and Rationale:
-# - This package exists as an alternative to the rust-ridden flashrom
-# Change of compilation targets to what is relevant for Parabola.
-
-
-pkgname="flashrom-stable"
-pkgdesc="Flashrom is a utility which can be used to detect, read, erase, or write BIOS chips (DIP, PLCC, SPI)."
-pkgver=1.1
-pkgrel=1
-url="https://review.coreboot.org/plugins/gitiles/flashrom-stable"
-license=('GPL')
-source=(git+https://review.coreboot.org/flashrom-stable.git?signed#tag=v${pkgver})
-validpgpkeys=('2853079C9C66AB7E82C64966A5C163B7E557CAEB')
-sha256sums=('SKIP')
-depends=('pciutils' 'libusb' 'libftdi' 'libjaylink' 'libgpiod')
-makedepends=('git')
-optdepends=("dmidecode: for SMBIOS/DMI table decoder support")
-conflicts=("flashrom")
-arch=('armv7h' 'i686' 'x86_64')
-
-build() {
- cd "${srcdir}/${pkgname}"
- make
-}
-
-package() {
- cd "${srcdir}/${pkgname}"
- install -d "${pkgdir}/usr/bin"
- install -d "${pkgdir}/usr/man/man8"
- install -m 0755 flashrom "${pkgdir}/usr/bin/"
- install -m 0644 flashrom.8 "${pkgdir}/usr/man/man8/"
- install -m 0755 util/ich_descriptors_tool/ich_descriptors_tool "${pkgdir}/usr/bin/"
-}