wok annotate linux-memstick/receipt @ rev 19821

Add goffice-gtk2
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Mar 02 18:35:43 2017 +0100 (2017-03-02)
parents db5b03f42dd9
children ffc20f9bd49f
rev   line source
pascal@2161 1 # SliTaz package receipt.
pascal@2161 2
pascal@2161 3 PACKAGE="linux-memstick"
pascal@18296 4 VERSION="3.2.71"
pascal@2161 5 CATEGORY="base-system"
pascal@2161 6 SHORT_DESC="The Linux kernel sony memory stick modules."
pankso@3864 7 MAINTAINER="devel@slitaz.org"
pascal@14657 8 LICENSE="GPL2"
pascal@2926 9 DEPENDS="linux"
pascal@2161 10 WANTED="linux"
pascal@2161 11 WEB_SITE="http://www.kernel.org/"
pascal@2161 12
pascal@2161 13 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@2161 14 genpkg_rules()
pascal@2161 15 {
pascal@2161 16 local path
pankso@15855 17 path=lib/modules/$VERSION-slitaz/kernel
pascal@2161 18 mkdir -p $fs/$path
pascal@2161 19
pankso@15855 20 export src install
pascal@2161 21
slaxemulator@9700 22 $wanted_stuff/list_modules.sh drivers/memstick | while read module; do
pascal@2161 23 dir=$path/$(dirname $module)
pascal@2161 24 [ -d $fs/$dir ] || mkdir -p $fs/$dir
pascal@15603 25 cp -a $install/$path/$module $fs/$dir
pascal@2161 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
pascal@2161 33 }
pascal@2161 34
pascal@2161 35 # Post install/remove commands for Tazpkg.
pascal@2161 36 post_install()
pascal@2161 37 {
pankso@15855 38 chroot "$root/" depmod -a $VERSION-slitaz
pascal@2161 39 }
pascal@2161 40
pascal@2161 41 post_remove()
pascal@2161 42 {
pankso@15855 43 chroot "$root/" depmod -a $VERSION-slitaz
pascal@2161 44 }
pascal@2161 45