void-packages/srcpkgs/crash/template
2015-02-26 18:11:06 +01:00

35 lines
937 B
Bash

# Template file for 'crash'
pkgname=crash
version=7.1.0
revision=3
build_style=gnu-makefile
hostmakedepends="flex"
makedepends="ncurses-devel zlib-devel lzo-devel"
short_desc="Kernel crash dump debugger and live inspector"
maintainer="Christian Neukirchen <chneukirchen@gmail.com>"
license="GPL-3"
homepage="http://people.redhat.com/anderson/"
distfiles="http://people.redhat.com/anderson/${pkgname}-${version}.tar.gz"
checksum=12e17267985ad1339b5da931143d4997fa4dafb82027d5664d4b7826175a21ec
nocross=yes
post_extract() {
sed -i 's|arch|uname -a|g' extensions/snap.mk
sed -i 's|/usr/lib/debug/lib/modules|/usr/lib/debug/usr/lib/modules|g' defs.h
sed -i 's|/boot/efi/redhat|/usr/lib/debug/boot/|g' filesys.c
}
do_build() {
make ${makejobs} lzo
make ${makejobs} extensions
}
do_install() {
vbin crash
vman crash.8
vmkdir usr/lib/crash/extensions
for f in extensions/*.so; do
vinstall $f 0644 usr/lib/crash/extensions
done
}