wok view linux-module-headers/receipt @ rev 18730

Quote root dir in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Dec 20 15:13:45 2015 +0100 (2015-12-20)
parents 08cf996a2307
children 4ba93d7db933
line source
1 # SliTaz package receipt.
3 PACKAGE="linux-module-headers"
4 VERSION="3.2.71"
5 CATEGORY="development"
6 SHORT_DESC="Header files and scripts for building modules for linux kernel."
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 DEPENDS="slitaz-toolchain"
10 WANTED="linux"
11 WEB_SITE="http://kernel.org/"
12 KVERSION=$VERSION-slitaz
14 # Rules to gen a SliTaz package suitable for Tazpkg.
15 genpkg_rules()
16 {
17 mkdir -p $fs/lib/modules/$KVERSION $fs/usr
18 ln -sf /usr/src/linux-$KVERSION $fs/lib/modules/$KVERSION/build
19 cp -a $install/usr/src $fs/usr
20 }
22 pre_remove() {
23 if [ -e "$1/usr/src/linux" ]; then
24 rm -rf "$1/usr/src/linux"
25 fi
26 }
28 post_install() {
29 # Added soft link to make it easier to point to kernel folder
30 [ -L "$1/usr/src/linux" ] && rm -f "$1/usr/src/linux"
31 ln -sf /usr/src/linux-$KVERSION "$1/usr/src/linux"
32 }