diff options
author | Miklós Tóth | 2021-03-03 00:10:12 +0000 |
---|---|---|
committer | Miklós Tóth | 2021-03-03 00:10:12 +0000 |
commit | ccf71cebe2056ef3518c6e846305674b191af6d3 (patch) | |
tree | ac27703d742ee0da6c0120ced36dd0dc63cec218 /PKGBUILD | |
parent | 8333ff98fed7d76bff9f37fb1d65652b2028ddd0 (diff) | |
download | aur-ccf71cebe2056ef3518c6e846305674b191af6d3.tar.gz |
automatic update
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -210,14 +210,15 @@ _package() { echo "$pkgbase" | install -Dm644 /dev/stdin "$modulesdir/pkgbase" msg2 "Installing modules..." - make INSTALL_MOD_PATH="$pkgdir/usr" modules_install + make INSTALL_MOD_PATH="$pkgdir/usr" INSTALL_MOD_STRIP=1 modules_install # remove build and source links rm "$modulesdir"/{source,build} } _package-headers() { - pkgdesc="Header files and scripts for building modules for Xanmod Linux kernel with ashmem and binder enabled" + pkgdesc="Headers and scripts for building modules for the $pkgdesc kernel" + depends=(pahole) cd linux-${_major} local builddir="$pkgdir/usr/lib/modules/$(<version)/build" @@ -286,6 +287,8 @@ _package-headers() { esac done < <(find "$builddir" -type f -perm -u+x ! -name vmlinux -print0) + msg2 "Stripping vmlinux..." + strip -v $STRIP_STATIC "$builddir/vmlinux" msg2 "Adding symlink..." mkdir -p "$pkgdir/usr/src" ln -sr "$builddir" "$pkgdir/usr/src/$pkgbase" |