summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: abd4e4b3e42f1c67dc72adb2797664d066f121bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Maintainer: theguy147 <theguy (aT) mailbox (dOt) org>
pkgname=crash-git
pkgver=7.2.9.r16.gfdb41f0
pkgrel=1
pkgdesc='Linux kernel crashdump analysis tool. (git version)'
arch=('x86_64')
url="https://github.com/crash-utility/crash"
license=('GPL3')
conflicts=('crash')
source=("${pkgname}::git+${url}.git")
sha512sums=('SKIP')

pkgver() {
    cd "${pkgname}"
    git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}

build() {
    cd "${pkgname}"
    CPPFLAGS='' make
}

package() {
    cd "${pkgname}"
    install -Dm 755 -t "${pkgdir}/usr/bin" ./crash
    install -Dm 755 -t "${pkgdir}/usr/share/man/man8" ./crash.8
}