29 lines
577 B
Bash
29 lines
577 B
Bash
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
#
|
|
# Copyright (c) 2021 Valve.
|
|
# Maintainer: Guilherme G. Piccoli <gpiccoli@igalia.com>
|
|
|
|
pkgname=kdumpst
|
|
pkgver=85
|
|
pkgrel=1
|
|
pkgdesc="(Fork of) kdumpst, a tool for collecting pstore/kdump logs."
|
|
arch=('any')
|
|
url="https://git.zander.im/Zander671/kdumpst"
|
|
license=('LGPL2.1')
|
|
install=kdumpst.install
|
|
|
|
source=("git+${url}.git")
|
|
sha256sums=('SKIP')
|
|
|
|
pkgver() {
|
|
cd kdumpst
|
|
git rev-list --count HEAD
|
|
}
|
|
|
|
package() {
|
|
depends=('dmidecode' 'kexec-tools' 'makedumpfile' 'zip' 'zstd')
|
|
|
|
cd kdumpst
|
|
make install DESTDIR="${pkgdir}"
|
|
}
|