mirror of
https://github.com/void-linux/void-packages.git
synced 2025-04-18 15:17:01 +02:00
30 lines
973 B
Bash
30 lines
973 B
Bash
# Template file for 'libkdumpfile'
|
|
pkgname=libkdumpfile
|
|
version=0.5.5
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="PYTHON=python3"
|
|
hostmakedepends="automake pkg-config libtool python3-setuptools python3-packaging-bootstrap"
|
|
makedepends="binutils-devel libzstd-devel lzo-devel python3-devel snappy-devel zlib-devel"
|
|
short_desc="Kernel coredump file access library"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
license="GPL-2.0-or-later, LGPL-3.0-or-later"
|
|
homepage="https://github.com/ptesarik/libkdumpfile"
|
|
distfiles="https://github.com/ptesarik/libkdumpfile/archive/refs/tags/v${version}.tar.gz"
|
|
checksum=bb46f8573d85adfd30d41f70c126a5fc23428d7c27f3a389f6595a70c62a31f7
|
|
nocross="python3-module inside"
|
|
|
|
pre_configure() {
|
|
autoreconf -fi
|
|
}
|
|
|
|
libkdumpfile-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/*.a
|
|
vmove usr/lib/*.so
|
|
vmove usr/lib/pkgconfig
|
|
}
|
|
}
|