wok annotate libv4l/receipt @ rev 18707

fix some post_install status
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Dec 16 15:49:50 2015 +0100 (2015-12-16)
parents 6eff489aa802
children 1010cf040970
rev   line source
jozee@4488 1 # SliTaz package receipt.
jozee@4488 2
jozee@4488 3 PACKAGE="libv4l"
slaxemulator@12329 4 VERSION="0.8.5"
jozee@4488 5 CATEGORY="multimedia"
jozee@4488 6 MAINTAINER="jozee@slitaz.org"
pascal@14718 7 LICENSE="GPL2"
jozee@4488 8 SHORT_DESC="Userspace library for Video 4 Linux (1 and 2)"
slaxemulator@6498 9 WEB_SITE="http://freshmeat.net/projects/libv4l"
slaxemulator@6498 10 SOURCE="v4l-utils"
al@18472 11 TARBALL="$SOURCE-$VERSION.tar.bz2"
slaxemulator@6498 12 WGET_URL="http://linuxtv.org/downloads/v4l-utils/$TARBALL"
jozee@4488 13 TAGS="webcam video"
jozee@4488 14
slaxemulator@12340 15 DEPENDS="libjpeg"
slaxemulator@12340 16 BUILD_DEPENDS="jpeg-dev"
slaxemulator@12340 17
jozee@4488 18 # Rules to configure and make the package.
slaxemulator@12329 19 compile_rules()
slaxemulator@12329 20 {
slaxemulator@12329 21 make &&
al@18472 22 make install PREFIX="/usr" DESTDIR="$DESTDIR"
jozee@4488 23 }
al@18472 24
jozee@4488 25 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@4488 26 genpkg_rules()
jozee@4488 27 {
jozee@4488 28 mkdir -p $fs/usr/lib
pascal@14718 29 cp -a $install/usr/lib/*so* $fs/usr/lib/
pascal@14718 30 cp -a $install/usr/lib/$PACKAGE $fs/usr/lib
jozee@4488 31 }
jozee@4609 32
jozee@4609 33 post_install()
jozee@4609 34 {
al@18472 35 lib='/usr/lib/libv4l/v4l1compat.so'
al@18472 36 if [ -e "$1$lib" ]; then
al@18472 37 grep -q "^export LD_PRELOAD=$lib$" "$1/etc/profile" ||
al@18472 38 echo "export LD_PRELOAD=$lib" >> "$1/etc/profile"
al@18472 39 fi
jozee@4609 40 }
jozee@4612 41
jozee@4612 42 post_remove()
jozee@4612 43 {
al@18472 44 sed -i '/export LD_PRELOAD=\/usr\/lib\/libv4l\/v4l1compat.so/d' "$1/etc/profile"
jozee@4612 45 }