25 lines
767 B
Bash
25 lines
767 B
Bash
# Template file for 'mcelog'
|
|
pkgname=mcelog
|
|
version=157
|
|
revision=1
|
|
conf_files="/etc/mcelog/mcelog.conf"
|
|
only_for_archs="i686 i686-musl x86_64 x86_64-musl"
|
|
short_desc="Decode kernel machine check log on x86 machines"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
license="GPL-2.0-only"
|
|
homepage="http://www.mcelog.org/"
|
|
_changelog="https://github.com/andikleen/mcelog/releases"
|
|
distfiles="https://github.com/andikleen/${pkgname}/archive/v${version}.tar.gz"
|
|
checksum=bd0af97f0a2d7509d3872c1597b24ba5d6433c15df390a9849a7ba79f4832bdb
|
|
|
|
do_build() {
|
|
make CC=$CC CFLAGS="$CFLAGS $LDFLAGS" ${makejobs}
|
|
}
|
|
do_install() {
|
|
vmkdir usr/share/man/man5
|
|
vmkdir usr/share/man/man8
|
|
make PREFIX=/usr DESTDIR=${DESTDIR} install
|
|
mv ${DESTDIR}/usr/sbin ${DESTDIR}/usr/bin
|
|
vsv mcelog
|
|
}
|