blob: 9b279e60f0f4cea05898d5759ea51c46b5e0a37a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
# Maintainer: James Rayner <james@archlinux.org>
# Contributor: Christian Storm <Christian.Storm@gmx.DE>
pkgname=vbetool
pkgver=1.0
pkgrel=2
pkgdesc="vbetool uses lrmi in order to run code from the video BIOS"
arch=('i686' 'x86_64')
url="http://www.srcf.ucam.org/~mjg59/vbetool/"
license=('GPL2')
depends=('zlib' 'libx86')
makedepends=('pciutils')
source=(http://www.codon.org.uk/~mjg59/vbetool/download/vbetool-${pkgver}.tar.gz)
build() {
cd $startdir/src/vbetool-$pkgver
if [ "${CARCH}" = "x86_64" ]; then
./configure --prefix=/usr --without-x86emu
else
./configure --prefix=/usr
fi
make LIBS=-lpci || return 1
make DESTDIR=$startdir/pkg install
}
md5sums=('e57b5475b8200e3c44df7f53f0fbdc72')
|