summaryrefslogtreecommitdiff
path: root/system/easy-kernel/APKBUILD
blob: 6f7f35915243926d5ab82ac4269c79c9ead01171 (plain) (blame)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Contributor: A. Wilcox <awilfox@adelielinux.org>
# Maintainer: A. Wilcox <awilfox@adelielinux.org>
pkgname=easy-kernel
pkgver=4.14.0
pkgrel=0
pkgdesc="The Linux kernel, packaged for your convenience"
url="https://kernel.org/"
arch="all"
options="!check !dbg !strip"
license="GPL-2.0"
depends=""
makedepends="lzop openssl-dev"
install=""
subpackages="$pkgname-modules $pkgname-src"
source="https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-4.14.tar.xz
	https://distfiles.adelielinux.org/source/linux-4.14-mc0.patch.xz
	config-x86_64"
builddir="$srcdir/linux-4.14"

prepare() {
	default_prepare
	cd "$srcdir"
	cat linux-4.14-mc0.patch.xz | unxz -> linux-4.14-mc0.patch
	cd "$builddir"
	patch -Np1 <../linux-4.14-mc0.patch
	cd "$srcdir"
	cp config-$CARCH linux-4.14/.config
	cp -pr linux-4.14 linux-src
}

build() {
	cd "$builddir"
	make
}

package() {
	cd "$builddir"
	mkdir -p "$pkgdir"/boot
	make INSTALL_PATH="$pkgdir"/boot \
		INSTALL_MOD_PATH="$pkgdir" \
		install modules_install
}

modules() {
	pkgdesc="Modules / device drivers for easy-kernel"
	mkdir -p "$subpkgdir"/lib
	mv "$pkgdir"/lib/modules "$subpkgdir"/lib/
}

src() {
	pkgdesc="Kernel source code used to build THIS kernel"
	mkdir -p "$subpkgdir"/usr/src
	mv "$srcdir"/linux-src "$subpkgdir"/usr/src/linux
}
sha512sums="77e43a02d766c3d73b7e25c4aafb2e931d6b16e870510c22cef0cdb05c3acb7952b8908ebad12b10ef982c6efbe286364b1544586e715cf38390e483927904d8  linux-4.14.tar.xz
6a119b2e01e4cc11911c1151cffb068f2a42bd986b280bee44c714879d8ee7dcebf2de51a9bc64c1915964867e98d438c09db89c1d7bd3a98ed845924ee11cfa  linux-4.14-mc0.patch.xz
022c28240fe687b4bc787e2eb375bff48b3ae94b4080f1fa87bd7d3918658b42001aefb62435c4074ffefbe46fd6ca7736c4e2085d0d35bdf83de0928d35dd07  config-x86_64"