wok view linux-ncpfs/receipt @ rev 2713

Up ffmpeg-dev (18664)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Apr 23 09:39:12 2009 +0200 (2009-04-23)
parents 532538d67b1c
children f306d126580e
line source
1 # SliTaz package receipt.
3 PACKAGE="linux-ncpfs"
4 VERSION="2.6.25.5"
5 CATEGORY="base-system"
6 SHORT_DESC="The Linux kernel ncpfs module."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 WANTED="linux"
9 WEB_SITE="http://www.kernel.org/"
10 CONFIG_FILES="/etc/filesystems"
12 # Rules to gen a SliTaz package suitable for Tazpkg.
13 genpkg_rules()
14 {
15 local path
16 path=lib/modules/$VERSION-slitaz/kernel
17 mkdir -p $fs/$path $fs/etc
18 export src
19 export _pkg
20 $src/list_modules.sh fs/ncpfs | while read module; do
21 dir=$path/$(dirname $module)
22 [ -d $fs/$dir ] || mkdir -p $fs/$dir
23 cp -a $_pkg/$path/$module $fs/$dir
24 done
25 }
27 # Post install/remove commands for Tazpkg.
28 post_install()
29 {
30 grep -qs ^${PACKAGE#*-}$ $1/etc/filesystems || \
31 echo "${PACKAGE#*-}" >> $1/etc/filesystems
32 depmod -a -b "$1/" $VERSION-slitaz
33 }
35 post_remove()
36 {
37 sed -i "/^${PACKAGE#*-}\$/d" $1/etc/filesystems
38 depmod -a $VERSION-slitaz
39 }