blob: 9253dee0783928e90a314d9252a85f5c4c13f503 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# SPDX-License-Identifier: LGPL-2.1-or-later
#
# Copyright (c) 2021 Valve.
# Maintainer: Guilherme G. Piccoli <gpiccoli@igalia.com>
pkgname=kdumpst
pkgver=1.2
pkgrel=1
pkgdesc="kdumpst, a tool for collecting pstore/kdump logs."
arch=('any')
url="https://gitlab.freedesktop.org/gpiccoli/kdumpst"
license=('LGPL2.1')
install=kdumpst.install
source=("https://gitlab.freedesktop.org/gpiccoli/$pkgname/-/archive/v$pkgver/$pkgname-v$pkgver.tar.gz")
sha256sums=('e623107293a737c7549e5723076f1094c16c98aeb63e2fa85e35a9d4062f7358')
package() {
depends=('dmidecode' 'kexec-tools' 'makedumpfile' 'zip' 'zstd')
cd $pkgname-v$pkgver
make install DESTDIR="${pkgdir}"
}
|