mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-06 00:13:37 +01:00
36 lines
1.1 KiB
Plaintext
36 lines
1.1 KiB
Plaintext
# Contributor: Duncan Guthrie <dguthrie@posteo.net>
|
|
# Maintainer: Duncan Guthrie <dguthrie@posteo.net>
|
|
pkgname=kexec-tools
|
|
pkgver=2.0.21
|
|
pkgrel=0
|
|
pkgdesc="Directly boot into a new kernel over a currently running one"
|
|
url="https://git.kernel.org/pub/scm/utils/kernel/kexec/kexec-tools.git/"
|
|
arch="all !riscv64" # not supported on riscv64 yet
|
|
license="GPL-2.0-only"
|
|
makedepends="zlib-dev xz-dev linux-headers"
|
|
subpackages="$pkgname-doc"
|
|
source="https://www.kernel.org/pub/linux/utils/kernel/kexec/kexec-tools-$pkgver.tar.xz
|
|
fix-build-on-Alpine-linux.patch
|
|
"
|
|
options="!check"
|
|
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--localstatedir=/var \
|
|
--with-zlib \
|
|
--with-lzma
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="f487d2e243c2c4f29fbc9da7d06806f65210f717904655fc84d8d162b9c4614c3dd62e1bb47104a79f0dc2af04e462baf764fb309b5d7e6d287264cb48fd2a3e kexec-tools-2.0.21.tar.xz
|
|
228166102bfc48f81c04f3b13fbf29d6edf2e66918a967f243c8d2652f40c27af565f1db6b1a58783bd12d67184a70e6b00b1ab82e0f0d195dd51009260c3329 fix-build-on-Alpine-linux.patch"
|