diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-10-14 07:06:33 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-10-14 07:06:33 +0000 |
commit | cf242d16f4e8d358c261bd52e301c8284dfa1231 (patch) | |
tree | 8f6a126dde7490be51087e942ecbaad4f6d021b9 /testing | |
parent | e48e174b78c131afad3f9dfe6b47bf0f7fa80f52 (diff) | |
download | aports-cf242d16f4e8d358c261bd52e301c8284dfa1231.tar.bz2 aports-cf242d16f4e8d358c261bd52e301c8284dfa1231.tar.xz |
main/flashrom: moved from testing
fixes #405
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 - |