wok annotate linux-input-tablet/receipt @ rev 18116
Format few descriptions (EOL at the end, 80 symbols length lines)
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Sun Jun 07 00:27:07 2015 +0300 (2015-06-07) |
parents | eb689de65d7e |
children | 08cf996a2307 |
rev | line source |
---|---|
pascal@3316 | 1 # SliTaz package receipt. |
pascal@3316 | 2 |
pascal@3316 | 3 PACKAGE="linux-input-tablet" |
pascal@15670 | 4 VERSION="3.2.53" |
pascal@3316 | 5 CATEGORY="base-system" |
pascal@3316 | 6 SHORT_DESC="The Linux kernel tablet input drivers." |
pascal@3316 | 7 MAINTAINER="rcx@zoominternet.net" |
pascal@14657 | 8 LICENSE="GPL2" |
pascal@3316 | 9 WANTED="linux" |
pascal@12304 | 10 DEPENDS="linux" |
pascal@3316 | 11 WEB_SITE="http://www.kernel.org/" |
pascal@3316 | 12 |
pascal@3316 | 13 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@3316 | 14 genpkg_rules() |
pascal@3316 | 15 { |
pascal@3316 | 16 local path |
pankso@15855 | 17 path=lib/modules/$VERSION-slitaz/kernel |
pascal@3316 | 18 mkdir -p $fs/$path |
pankso@15855 | 19 export src install |
slaxemulator@9700 | 20 $wanted_stuff/list_modules.sh drivers/input/tablet | while read module; do |
pascal@3316 | 21 dir=$path/$(dirname $module) |
pascal@3316 | 22 [ -d $fs/$dir ] || mkdir -p $fs/$dir |
pascal@15603 | 23 cp -a $install/$path/$module $fs/$dir |
pascal@3316 | 24 done |
pascal@3316 | 25 |
pascal@3316 | 26 } |
pascal@3316 | 27 |
pascal@3316 | 28 # Post install/remove commands for Tazpkg. |
pascal@3316 | 29 post_install() |
pascal@3316 | 30 { |
pankso@15855 | 31 chroot "$root/" depmod -a $VERSION-slitaz |
pascal@3316 | 32 } |
pascal@3316 | 33 |
pascal@3316 | 34 post_remove() |
pascal@3316 | 35 { |
pankso@15855 | 36 chroot "$root/" depmod -a $VERSION-slitaz |
pascal@3316 | 37 } |
pascal@3316 | 38 |