summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d46aecfc9f313180fd28626924a9bde79e6d95ae (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
33
34
35
36
37
38
39
40
# Maintainer: Ivan Shapovalov <intelfx100@gmail.com>

pkgname=superiotool-svn
epoch=1
pkgver=r6637
pkgrel=1
pkgdesc="Detects the Super I/O of your mainboard and provides information about its register contents"
arch=(i686 x86_64)
url="http://www.coreboot.org/Superiotool"
license=(GPL)
makedepends=(subversion)
source=(svn://coreboot.org/coreboot/trunk/util/superiotool)
md5sums=(SKIP)

pkgver() {
	cd superiotool

	local ver="$(svnversion)"
	printf "r%s" "${ver//[[:alpha:]]}"
}

prepare() {
	cd superiotool

	# Makefile is broken #1
	sed -re 's|/sbin|/bin|' -i Makefile
}

build() {
	cd superiotool

	make
}

package() {
	cd superiotool

	make PREFIX=/usr DESTDIR="$pkgdir" install
}