wok-6.x annotate dahdi-linux/receipt @ rev 8991
dahdi-linux: kernel 2.6.37 fix
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Mar 03 11:26:54 2011 +0100 (2011-03-03) |
parents | 03a0e7af36f6 |
children | b81188b2a50e |
rev | line source |
---|---|
pascal@4102 | 1 # SliTaz package receipt. |
pascal@4102 | 2 |
pascal@4102 | 3 PACKAGE="dahdi-linux" |
pascal@7387 | 4 VERSION="2.4.0" |
pascal@4102 | 5 CATEGORY="network" |
pascal@4102 | 6 SHORT_DESC="Digium Asterisk Hardware Device Interface: kernel modules." |
pascal@4102 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@4102 | 8 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@4102 | 9 WEB_SITE="http://www.asterisk.org/" |
pascal@4102 | 10 WGET_URL="http://downloads.asterisk.org/pub/telephony/$PACKAGE/releases/$TARBALL" |
gokhlayeh@8679 | 11 DEPENDS="linux udev" |
pascal@4102 | 12 #PROVIDE="linux-misdn" |
pascal@4102 | 13 |
pascal@4102 | 14 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@4102 | 15 compile_rules() |
pascal@4102 | 16 { |
pascal@4102 | 17 cd $src |
pascal@5063 | 18 sed -i 's/tar -xof/tar -xf/' drivers/dahdi/firmware/Makefile |
pascal@8991 | 19 find -type f | xargs sed -i -e 's/DECLARE_MUTEX/DEFINE_SEMAPHORE/g' \ |
pascal@8991 | 20 -e 's/init_MUTEX/sema_init/g' |
pascal@4102 | 21 [ -d $WOK/linux/taz ] || tazwok cook linux |
gokhlayeh@8679 | 22 make KSRC=$WOK/linux/$(ls $WOK/linux/taz) install |
pascal@4102 | 23 } |
pascal@4102 | 24 |
pascal@4102 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@4102 | 26 genpkg_rules() |
pascal@4102 | 27 { |
pascal@4102 | 28 mkdir -p $fs/usr |
gokhlayeh@8679 | 29 cp -a $_pkg/etc $fs |
pascal@4102 | 30 cp -a $_pkg/dev $fs |
pascal@4102 | 31 cp -a $_pkg/lib $fs |
pascal@4102 | 32 cp -a $_pkg/usr/share $fs/usr |
pascal@4102 | 33 } |
pascal@4102 | 34 |
pascal@4102 | 35 # Post install/remove commands for Tazpkg. |
pascal@4102 | 36 post_install() |
pascal@4102 | 37 { |
pascal@4102 | 38 chroot "$1/" depmod -a |
pascal@4102 | 39 } |
pascal@4102 | 40 |
pascal@4102 | 41 post_remove() |
pascal@4102 | 42 { |
pascal@4102 | 43 depmod -a |
pascal@4102 | 44 } |