diff options
Diffstat (limited to 'testing')
-rw-r--r-- | testing/flashrom/APKBUILD | 32 | ||||
-rwxr-xr-x | testing/flashrom/flashrom.post-install | 15 |
2 files changed, 0 insertions, 47 deletions
diff --git a/testing/flashrom/APKBUILD b/testing/flashrom/APKBUILD deleted file mode 100644 index 7864cd6a24..0000000000 --- a/testing/flashrom/APKBUILD +++ /dev/null @@ -1,32 +0,0 @@ -# Contributor: -# Maintainer: Nathan Angelacos <nangel@alpinelinux.org> -pkgname=flashrom -pkgver=0.9.2 -pkgrel=1 -pkgdesc="A utility for identifying, reading, writing, verifying and erasing flash chips" -url="http://www.flashrom.org/Flashrom" -license="GPL" -depends=dmidecode -makedepends=pciutils-dev -subpackages="$pkgname-doc" -install="$pkgname.post-install" -source="http://qa.coreboot.org/releases/flashrom-0.9.2.tar.bz2" - -_builddir="$srcdir"/$pkgname-$pkgver - -prepare() { - cd "$_builddir" - # apply patches here -} - -build() { - cd "$_builddir" - make PREFIX=/usr/ || return 1 -} - -package() { - cd "$_builddir" - make PREFIX="$pkgdir/usr/" install -} - -md5sums="21751b4ea93c5a82c725adae7b63014a flashrom-0.9.2.tar.bz2" diff --git a/testing/flashrom/flashrom.post-install b/testing/flashrom/flashrom.post-install deleted file mode 100755 index b7919f5fd1..0000000000 --- a/testing/flashrom/flashrom.post-install +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -if [ -e /proc/sys/kernel/grsecurity/ ]; then -cat - <<EOF - - ************[ flashrom package installation notice ]**************** - - You appear to be running a grsec enabled kernel. - flashrom needs write access to /dev/mem and will likely not work - - ********************************************************************* - -EOF -fi -exit 0 - |