wok annotate dahdi-linux/receipt @ rev 13872

Up dahdi (2.6.1)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jan 14 23:42:27 2013 +0100 (2013-01-14)
parents b9368eac086f
children 69557c05e267
rev   line source
pascal@4102 1 # SliTaz package receipt.
pascal@4102 2
pascal@4102 3 PACKAGE="dahdi-linux"
pascal@12858 4 VERSION="2.6.1"
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"
pascal@13872 11 #PROVIDE="linux-misdn"
pascal@13872 12
gokhlayeh@8679 13 DEPENDS="linux udev"
pascal@4102 14
pascal@4102 15 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@4102 16 compile_rules()
pascal@4102 17 {
pascal@4102 18 cd $src
pascal@12858 19 sed -i 's|/sbin/depmod|echo &|' Makefile
pascal@5063 20 sed -i 's/tar -xof/tar -xf/' drivers/dahdi/firmware/Makefile
pascal@8991 21 find -type f | xargs sed -i -e 's/DECLARE_MUTEX/DEFINE_SEMAPHORE/g' \
pascal@8992 22 -e 's/init_MUTEX\([^)]*\)/sema_init\1, 1/g'
pascal@4102 23 [ -d $WOK/linux/taz ] || tazwok cook linux
pascal@12858 24 make KVERS=$kvers KSRC=$WOK/linux/source/$(ls $WOK/linux/taz) install
pascal@4102 25 }
pascal@4102 26
pascal@4102 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@4102 28 genpkg_rules()
pascal@4102 29 {
pascal@12859 30 EXTRAVERSION=_${kvers%.*}
pascal@13872 31 cp -a $install/* $fs
pascal@4102 32 }
pascal@4102 33
pascal@4102 34 # Post install/remove commands for Tazpkg.
pascal@4102 35 post_install()
pascal@4102 36 {
pascal@12858 37 chroot "$1/" depmod -a ${EXTRAVERSION#_}-slitaz
pascal@4102 38 }
pascal@4102 39
pascal@4102 40 post_remove()
pascal@4102 41 {
pascal@12858 42 chroot "$1/" depmod -a ${EXTRAVERSION#_}-slitaz
pascal@4102 43 }