Files
LFS-PKGBUILDs/sys-kernel/linux-6.16.1.PKGBUILD
2025-12-23 04:29:25 -05:00

27 lines
498 B
Plaintext

pkgname="linux"
pkgver="6.16.1"
pkgdesc="Linux kernel"
homepage="https://www.kernel.org/"
license=(GPL-2.0-only)
_srcname=linux-${pkgver%.*}
sources=("${pkgname}-${pkgver}.tar.xz")
urls=("https://www.kernel.org/pub/linux/kernel/v6.x/${sources[0]}")
md5sums=("32d45755e4b39d06e9be58f6817445ee")
src_prepare() {
tar -xf ${distdir}/${sources[0]}
}
src_build() {
:
}
src_check() {
:
}
src_install() {
install -d -v -m755 ${pkgdir}/usr/src/
mv -v ${pkgname}-${pkgver} ${pkgdir}/usr/src/
}