wok view lirc/receipt @ rev 5184

Up: tazpkg (3.4)
author Christophe Lincoln <pankso@slitaz.org>
date Sun Mar 28 00:40:39 2010 +0100 (2010-03-28)
parents 8752c40cc534
children 616c39da58cd
line source
1 # SliTaz package receipt.
3 PACKAGE="lirc"
4 VERSION="0.8.5"
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-libX11xorg-libXau xorg-libXdmcp libirman portaudio xorg-libX11"
10 BUILD_DEPENDS="slitaz-toolchain libftdi-dev libirman-dev"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WEB_SITE="http://www.lirc.org/"
13 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
20 # Up through at least lirc 0.8.5, lirc_gpio doesn't build with kernel 2.6.22+
21 echo "Disabling build of drivers/lirc_gpio due to kernel incompatibility"
22 sed -i -e "s:lirc_gpio\.o::" drivers/lirc_gpio/Makefile.am
23 sed -i -e "s:lirc_gpio\.o::" drivers/lirc_gpio/Makefile.in
25 # lirc_parallel is not SMP safe
26 echo "Disabling build of drivers/lirc_parallel due to SMP incompatibility"
27 sed -i -e "s:lirc_parallel\.o::" drivers/lirc_parallel/Makefile.am
28 sed -i -e "s:lirc_parallel\.o::" drivers/lirc_parallel/Makefile.in
30 ./configure \
31 --prefix=/usr \
32 --with-x \
33 --with-driver=all \
34 --with-kerneldir=/usr/src/linux \
35 --with-moduledir=/lib/modules/$(cat $WOK/linux/receipt | grep ^VERSION | \
36 cut -d "\"" -f 2)/kernel/misc \
37 $CONFIGURE_ARGS &&
38 make &&
39 make DESTDIR=$src/_pkg install
40 }
42 # Rules to gen a SliTaz package suitable for Tazpkg.
43 genpkg_rules()
44 {
45 mkdir -p $fs/usr/lib
46 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
47 cp -a $_pkg/usr/bin $fs/usr
48 cp -a $_pkg/usr/sbin $fs/usr
50 cp -a $_pkg/dev $fs
51 cp -a $_pkg/lib $fs
52 }