new: linux-6.16.1

This commit is contained in:
2025-12-23 04:29:25 -05:00
parent 737298005c
commit 361bd42db9

View File

@@ -0,0 +1,26 @@
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/
}