wok view linux-libre-usbdsl/receipt @ rev 21087

updated jsoncpp (0.10.2 -> 1.8.4)
author Hans-G?nter Theisgen
date Fri Mar 15 15:55:06 2019 +0100 (2019-03-15)
parents 051931e905b0
children
line source
1 # SliTaz package receipt.
3 PACKAGE="linux-libre-usbdsl"
4 VERSION="3.18.129-gnu"
5 CATEGORY="base-system"
6 SHORT_DESC="The Linux Libre kernel usb dsl modem modules."
7 MAINTAINER="gokhlayeh@slitaz.org"
8 LICENSE="GPL2"
9 PROVIDE="linux-usbdsl"
10 DEPENDS="linux-libre"
11 WANTED="linux-libre"
12 WEB_SITE="http://www.fsfla.org/svnwiki/selibre/linux-libre/"
15 # Rules to gen a SliTaz package suitable for Tazpkg.
16 genpkg_rules()
17 {
18 local path
19 path=lib/modules/$VERSION-slitaz/kernel
20 mkdir -p $fs/$path
22 export src
23 export _pkg
25 $wanted_stuff/list_modules.sh drivers/usb/atm net/atm | \
26 while read module; do
27 dir=$path/$(dirname $module)
28 [ -d $fs/$dir ] || mkdir -p $fs/$dir
29 cp -a $install/$path/$module $fs/$dir
30 done
31 }
33 # Post install/remove commands for Tazpkg.
34 post_install()
35 {
36 chroot "$1/" depmod -a $VERSION-slitaz
37 }
39 post_remove()
40 {
41 chroot "$1/" depmod -a $VERSION-slitaz
42 }