wok annotate v4l-dvb/receipt @ rev 7213

Up: dbus-glib to 0.92.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Nov 10 17:42:01 2010 +0000 (2010-11-10)
parents 782eb7d921f3
children e14a2085bbee
rev   line source
jozee@4613 1 # SliTaz package receipt.
jozee@4613 2
jozee@4613 3 PACKAGE="v4l-dvb"
jozee@4613 4 VERSION="development"
jozee@4613 5 CATEGORY="multimedia"
jozee@4613 6 MAINTAINER="jozee@slitaz.org"
jozee@4613 7 SHORT_DESC="v4l-dvb development repository"
jozee@4613 8 DEPENDS=""
jozee@4613 9 BUILD_DEPENDS="python mercurial coreutils-operations"
jozee@4613 10 WEB_SITE="http://linuxtv.org/hg/v4l-dvb/"
jozee@4613 11 TAGS="webcam"
jozee@4613 12
jozee@4613 13 # Rules to configure and make the package.
jozee@4613 14 compile_rules() {
pascal@5559 15 TARBALL=$SOURCES_REPOSITORY/$PACKAGE-hg-$VERSION.tar.gz
pascal@5559 16 if [ -d $PACKAGE-$VERSION ]; then
pascal@5559 17 true
pascal@5559 18 elif [ -f $TARBALL ]; then
pascal@5559 19 tar xzf $TARBALL
pascal@5559 20 else
pascal@5563 21 hg clone $WEB_SITE $PACKAGE-$VERSION &&
pascal@5559 22 tar czf $TARBALL $PACKAGE-$VERSION
pascal@5559 23 fi
jozee@4613 24 cd $src
pascal@5567 25 sed -i 's/0 | xargs -0n 255 ln -sf --target-directory=\./ | while read file; do ln -sf $file . ; done/' v4l/Makefile
pascal@5570 26 grep -rl /sbin/depmod * | xargs sed -i 's|/sbin/depmod|/bin/echo|'
pascal@6045 27 sed -i -e 's|/sbin/lsmod|/bin/lsmod|' -e 's/print | while.*/exec ln -s {} . \\;/' v4l/Makefile
jozee@4613 28 KERNEL_VERSION=`grep ^VERSION= $WOK/linux/receipt | cut -d "=" -f2 | sed -e 's/"//g'`
pascal@4618 29 IFS="." ; set -- $KERNEL_VERSION ; unset IFS
pascal@4618 30 cat > v4l/.version << EOF
pascal@4618 31 VERSION=$1
pascal@4618 32 PATCHLEVEL:=$2
pascal@4618 33 SUBLEVEL:=$3
pascal@4618 34 KERNELRELEASE:=$KERNEL_VERSION-slitaz
pascal@4618 35 EOF
pascal@5914 36 make SRCDIR="$WOK/linux/linux-$KERNEL_VERSION" CONFIG_MEDIA_TUNER_CUSTOMISE=n CONFIG_RADIO_ADAPTERS=n CONFIG_RADIO_MIROPCM20=n CONFIG_MANTIS_CORE=n &&
jozee@4613 37 make DESTDIR="$PWD/_pkg" install
jozee@4613 38 }
jozee@4613 39
jozee@4613 40 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@4613 41 genpkg_rules()
jozee@4613 42 {
jozee@4613 43 KERNEL_VERSION=`grep ^VERSION= $WOK/linux/receipt | cut -d "=" -f2 | sed -e 's/"//g'`
jozee@4613 44 EXTRAVERSION=_$KERNEL_VERSION
jozee@4613 45
jozee@4613 46 mkdir -p $fs/lib/modules/$KERNEL_VERSION-slitaz/kernel/
jozee@4613 47
jozee@4613 48 find $_pkg/lib/modules/$KERNEL_VERSION-slitaz -name "*.ko" -exec lzma e '{}' '{}'.gz \; 2> /dev/null
jozee@4613 49 find $_pkg/lib/modules/$KERNEL_VERSION-slitaz -name "*.ko" -exec rm '{}' \;
jozee@4613 50 cp -a $_pkg/lib/modules/$KERNEL_VERSION-slitaz/kernel/drivers $fs/lib/modules/$KERNEL_VERSION-slitaz/kernel/
jozee@4613 51 }
jozee@4613 52
jozee@4613 53 post_install()
jozee@4613 54 {
jozee@4613 55 echo "Processing post-install commands..."
jozee@4613 56 chroot "$1/" depmod -a ${EXTRAVERSION#_}-slitaz
jozee@4613 57 }
jozee@4613 58
jozee@4613 59 post_remove()
jozee@4613 60 {
jozee@4613 61 echo "Processing post-remove commands..."
jozee@4613 62 depmod -a
jozee@4613 63 }