wok annotate linux64-zram/receipt @ rev 13922

cssed, gnome-games: try to fix build
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Jan 26 00:50:39 2013 +0000 (2013-01-26)
parents 7d3f6d7f2528
children 416fab3c90c0
rev   line source
pascal@13390 1 # SliTaz package receipt.
pascal@13390 2
pascal@13390 3 PACKAGE="linux64-zram"
pascal@13390 4 VERSION="3.2.14"
pascal@13390 5 BASEVER="${VERSION:0:3}"
pascal@13390 6 CATEGORY="base-system"
pascal@13390 7 SHORT_DESC="Compressed caching"
pascal@13390 8 MAINTAINER="devel@slitaz.org"
pascal@13390 9 WEB_SITE="http://www.kernel.org/"
pascal@13391 10 WANTED="linux"
pascal@13390 11 PROVIDE="compcache linux-zram"
pascal@13390 12
pascal@13391 13 DEPENDS="linux64"
pascal@13390 14
pascal@13390 15 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@13390 16 genpkg_rules()
pascal@13390 17 {
pascal@13390 18 local path
pascal@13390 19 _pkg=$_pkg/linux64
pascal@13390 20 path=lib/modules/$BASEVER-slitaz/kernel
pascal@13390 21 mkdir -p $fs/$path $fs/etc/init.d
pascal@13390 22 export src
pascal@13390 23 export _pkg
pascal@13390 24 $wanted_stuff/list_modules.sh drivers/staging/zram | \
pascal@13390 25 while read module; do
pascal@13390 26 dir=$path/$(dirname $module)
pascal@13390 27 [ -d $fs/$dir ] || mkdir -p $fs/$dir
pascal@13390 28 cp -a $_pkg/$path/$module $fs/$dir
pascal@13390 29 done
pascal@13390 30 install -o root -m 755 $stuff/compcache $fs/etc/init.d/
pascal@13390 31 install -o root -m 644 $stuff/compcache.conf $fs/etc/
pascal@13390 32 }
pascal@13390 33
pascal@13390 34 # Post install/remove commands for Tazpkg.
pascal@13390 35 post_install()
pascal@13390 36 {
pascal@13390 37 chroot "$1/" depmod -a $BASEVER-slitaz
pascal@13390 38 }
pascal@13390 39
pascal@13390 40 post_remove()
pascal@13390 41 {
pascal@13390 42 chroot "$1/" depmod -a $BASEVER-slitaz
pascal@13390 43 }
pascal@13390 44