wok annotate linux-hfs/receipt @ rev 14882

python-socketpool, python-restkit, python-http-parser, python-couchdbkit: we need a meaningfull TARBALL to store sources on mirror
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jul 24 15:51:20 2013 +0000 (2013-07-24)
parents 416fab3c90c0
children 051931e905b0
rev   line source
pascal@3053 1 # SliTaz package receipt.
pascal@3053 2
pascal@3053 3 PACKAGE="linux-hfs"
pascal@14175 4 VERSION="3.2.40"
pankso@12285 5 BASEVER="${VERSION:0:3}"
pascal@3053 6 CATEGORY="base-system"
pascal@3053 7 SHORT_DESC="The Linux kernel hfs module."
pankso@3864 8 MAINTAINER="devel@slitaz.org"
pascal@14657 9 LICENSE="GPL2"
pascal@3053 10 DEPENDS="linux"
pascal@3053 11 WANTED="linux"
pascal@3053 12 WEB_SITE="http://www.kernel.org/"
pascal@3053 13 CONFIG_FILES="/etc/filesystems"
pascal@3053 14
pascal@3053 15 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@3053 16 genpkg_rules()
pascal@3053 17 {
pascal@3053 18 local path
pankso@12285 19 path=lib/modules/$BASEVER-slitaz/kernel
pascal@3053 20 mkdir -p $fs/$path $fs/etc
pascal@3053 21 export src
pascal@3053 22 export _pkg
slaxemulator@9700 23 $wanted_stuff/list_modules.sh fs/${PACKAGE#*-} | while read module; do
pascal@3053 24 dir=$path/$(dirname $module)
pascal@3053 25 [ -d $fs/$dir ] || mkdir -p $fs/$dir
pascal@3053 26 cp -a $_pkg/$path/$module $fs/$dir
pascal@3053 27 done
pascal@3053 28 touch $fs/etc/filesystems
pascal@3053 29 }
pascal@3053 30
pascal@3053 31 # Post install/remove commands for Tazpkg.
pascal@3053 32 post_install()
pascal@3053 33 {
pascal@3053 34 grep -qs ^${PACKAGE#*-}$ $1/etc/filesystems || \
pascal@3053 35 echo "${PACKAGE#*-}" >> $1/etc/filesystems
pankso@12285 36 chroot "$1/" depmod -a $BASEVER-slitaz
pascal@3053 37 }
pascal@3053 38
pascal@3053 39 post_remove()
pascal@3053 40 {
pascal@3053 41 sed -i "/^${PACKAGE#*-}\$/d" $1/etc/filesystems
pankso@12285 42 chroot "$1/" depmod -a $BASEVER-slitaz
pascal@3053 43 }
pascal@3053 44