wok annotate linux-dialup/receipt @ rev 16324

connman-ui: set a meaningful name to the source for mirror:/source/packages-cooking/
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Apr 10 11:04:26 2014 +0000 (2014-04-10)
parents eb689de65d7e
children 08cf996a2307
rev   line source
jozee@3732 1 # SliTaz package receipt.
jozee@3732 2
jozee@3732 3 PACKAGE="linux-dialup"
pascal@15670 4 VERSION="3.2.53"
jozee@3732 5 CATEGORY="base-system"
jozee@3732 6 SHORT_DESC="The Linux kernel dial-up modules."
jozee@3732 7 MAINTAINER="domcox@slitaz.org"
pascal@14657 8 LICENSE="GPL2"
jozee@3732 9 DEPENDS="linux"
jozee@3732 10 WANTED="linux"
jozee@3732 11 WEB_SITE="http://www.kernel.org/"
jozee@3732 12
jozee@3732 13 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@3732 14 genpkg_rules()
jozee@3732 15 {
jozee@3732 16 local path
pankso@15855 17 path=lib/modules/$VERSION-slitaz/kernel
jozee@3732 18 mkdir -p $fs/$path
pankso@15855 19 export src install
pascal@12638 20 $wanted_stuff/list_modules.sh drivers/tty/serial/serial_cs.ko.xz \
pascal@13587 21 drivers/usb/serial drivers/net/usb/hso.ko.xz | \
jozee@3732 22 while read module; do
jozee@3732 23 dir=$path/$(dirname $module)
jozee@3732 24 [ -d $fs/$dir ] || mkdir -p $fs/$dir
pascal@15603 25 cp -a $install/$path/$module $fs/$dir
jozee@3732 26 done
slaxemulator@7239 27
pankso@12285 28 for i in $(cat $wanted_stuff/modules.list); do
pankso@12285 29 if [ -f $fs/$path/$i ]; then
pankso@12285 30 rm -f $fs/$path/$i
slaxemulator@7239 31 fi
slaxemulator@7239 32 done
jozee@3732 33 }
jozee@3732 34
jozee@3732 35 # Post install/remove commands for Tazpkg.
jozee@3732 36 post_install()
jozee@3732 37 {
pankso@15855 38 chroot "$root/" depmod -a $VERSION-slitaz
jozee@3732 39 }
jozee@3732 40
jozee@3732 41 post_remove()
jozee@3732 42 {
pankso@15855 43 chroot "$root/" depmod -a $VERSION-slitaz
jozee@3732 44 }
jozee@3732 45