wok view lirc/receipt @ rev 9195

busybox: add conspy fix
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Mar 09 22:01:54 2011 +0100 (2011-03-09)
parents 54d491ff87b1
children 32267b369a16
line source
1 # SliTaz package receipt.
3 PACKAGE="lirc"
4 VERSION="0.8.7"
5 CATEGORY="utilities"
6 SHORT_DESC="Enables decoding and sending signals of many commonly used remote controls."
7 MAINTAINER="rcx@zoominternet.net"
8 DEPENDS="glibc-base libusb libusb-compat libftdi xorg-libSM xorg-libICE \
9 xorg-libX11 xorg-libXau xorg-libXdmcp libirman portaudio xorg-libX11"
10 BUILD_DEPENDS="slitaz-toolchain libftdi-dev libirman-dev \
11 libirman libftdi linux-module-headers python"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WEB_SITE="http://www.lirc.org/"
14 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
21 # Up through at least lirc 0.8.5, lirc_gpio doesn't build with kernel 2.6.22+
22 #echo "Disabling build of drivers/lirc_gpio due to kernel incompatibility"
23 #sed -i -e "s:lirc_gpio\.o::" drivers/lirc_gpio/Makefile.am
24 #sed -i -e "s:lirc_gpio\.o::" drivers/lirc_gpio/Makefile.in
26 # lirc_parallel is not SMP safe
27 echo "Disabling build of drivers/lirc_parallel due to SMP incompatibility"
28 sed -i -e "s:lirc_parallel\.o::" drivers/lirc_parallel/Makefile.am
29 sed -i -e "s:lirc_parallel\.o::" drivers/lirc_parallel/Makefile.in
31 KERNEL_VERSION=`grep ^VERSION= $WOK/linux/receipt | cut -d "=" -f2 | sed -e 's/"//g'`
32 sed -i "s/uname -r/echo $KERNEL_VERSION-slitaz/g" configure
34 ./configure \
35 --prefix=/usr \
36 --with-x \
37 --with-driver=all \
38 --with-kerneldir=/usr/src/linux \
39 --with-moduledir=/lib/modules/$KERNEL_VERSION-slitaz/kernel/misc \
40 $CONFIGURE_ARGS &&
41 make &&
42 make DESTDIR=$src/_pkg install
43 }
45 # Rules to gen a SliTaz package suitable for Tazpkg.
46 genpkg_rules()
47 {
48 mkdir -p $fs/usr/lib
49 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
50 cp -a $_pkg/usr/bin $fs/usr
51 cp -a $_pkg/usr/sbin $fs/usr
53 cp -a $_pkg/dev $fs
54 cp -a $_pkg/lib $fs
55 }