42 lines
1.2 KiB
Bash
42 lines
1.2 KiB
Bash
# Template file for 'crash'
|
|
pkgname=crash
|
|
version=8.0.5
|
|
revision=1
|
|
archs="i686 x86_64" # broken on musl
|
|
build_style=gnu-makefile
|
|
hostmakedepends="flex tar wget texinfo"
|
|
makedepends="lzo-devel ncurses-devel zlib-devel readline-devel"
|
|
depends="binutils"
|
|
short_desc="Kernel crash dump debugger and live inspector"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
license="GPL-3.0-or-later"
|
|
homepage="https://crash-utility.github.io/"
|
|
changelog="https://crash-utility.github.io/crash.changelog.html"
|
|
distfiles="https://github.com/crash-utility/crash/archive/${version}.tar.gz"
|
|
checksum=b3ec57a844706ef044b607ba67bc5ef62d9deef8aec3fb2d7ea4f77dff24f1ef
|
|
nocross=yes
|
|
disable_parallel_build=yes
|
|
LDFLAGS="-llzo2"
|
|
CXXFLAGS="-fpermissive"
|
|
|
|
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
|
|
sed -i '/^LDFLAGS=/d' Makefile
|
|
}
|
|
|
|
do_build() {
|
|
make ${makejobs} lzo GDB_CONF_FLAGS="--with-system-readline --with-system-zlib"
|
|
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
|
|
}
|