crash: use system readline, zlib.

This commit is contained in:
Leah Neukirchen 2022-03-28 23:46:33 +02:00
parent 4f632892d4
commit cb7389ca83

View file

@ -1,11 +1,11 @@
# Template file for 'crash' # Template file for 'crash'
pkgname=crash pkgname=crash
version=8.0.0 version=8.0.0
revision=1 revision=2
archs="i686 x86_64" # broken on musl archs="i686 x86_64" # broken on musl
build_style=gnu-makefile build_style=gnu-makefile
hostmakedepends="flex tar wget texinfo" hostmakedepends="flex tar wget texinfo"
makedepends="lzo-devel ncurses-devel zlib-devel" makedepends="lzo-devel ncurses-devel zlib-devel readline-devel"
depends="binutils" depends="binutils"
short_desc="Kernel crash dump debugger and live inspector" short_desc="Kernel crash dump debugger and live inspector"
maintainer="Leah Neukirchen <leah@vuxu.org>" maintainer="Leah Neukirchen <leah@vuxu.org>"
@ -25,7 +25,7 @@ post_extract() {
} }
do_build() { do_build() {
make ${makejobs} lzo make ${makejobs} lzo GDB_CONF_FLAGS="--with-system-readline --with-system-zlib"
make ${makejobs} extensions make ${makejobs} extensions
} }