wok view lirc64/receipt @ rev 21074

updated jasper again (1.900.1 -> 2.0.16)
author Hans-G?nter Theisgen
date Thu Mar 14 17:22:53 2019 +0100 (2019-03-14)
parents c4e857aec2bd
children f1020832b94b
line source
1 # SliTaz package receipt.
3 PACKAGE="lirc64"
4 SOURCE="lirc"
5 VERSION="0.9.0"
6 CATEGORY="utilities"
7 SHORT_DESC="Enables decoding and sending signals of many commonly used remote controls."
8 MAINTAINER="rcx@zoominternet.net"
9 LICENSE="GPL2"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="http://www.lirc.org/"
12 WGET_URL="$SF_MIRROR/$SOURCE/$TARBALL"
13 PROVIDE="lirc:linux64"
15 DEPENDS="glibc-base libusb libusb-compat libftdi xorg-libXau libirman \
16 portaudio alsa-lib util-linux-uuid lirc-bin"
17 BUILD_DEPENDS="linux64-module-headers python libusb-dev libirman-dev \
18 portaudio-dev alsa-lib-dev libusb-compat-dev util-linux-uuid-dev \
19 libftdi-dev jack-audio-connection-kit-dev uclibc-cross-compiler-x86_64"
21 # Aufs enable chroot
22 AUFS_NOT_RAMFS="uclibc-cross-compiler-x86_64 is not compatible with aufs+tmpfs 8("
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 sed -i 's|__devexit ||;s|__devinit ||' \
28 drivers/lirc_serial/lirc_serial.c drivers/lirc_sir/lirc_sir.c
29 sed -i 's|#include <asm/system.h>|#define __devexit_p(x) x|' \
30 drivers/lirc_serial/lirc_serial.c drivers/lirc_sir/lirc_sir.c
32 sed -i '/smp_lock.h/d' drivers/lirc_atiusb/lirc_atiusb.c
33 sed -i 's|err(|printk(KERN_ERR|' drivers/*/*.c
35 # Up through at least lirc 0.8.5, lirc_gpio doesn't build with kernel 2.6.22+
36 #echo "Disabling build of drivers/lirc_gpio due to kernel incompatibility"
37 #sed -i -e "s:lirc_gpio\.o::" drivers/lirc_gpio/Makefile.am
38 #sed -i -e "s:lirc_gpio\.o::" drivers/lirc_gpio/Makefile.in
40 # lirc_parallel is not SMP safe
41 echo "Disabling build of drivers/lirc_parallel due to SMP incompatibility"
42 sed -i -e "s:lirc_parallel\.o::" drivers/lirc_parallel/Makefile.am
43 sed -i -e "s:lirc_parallel\.o::" drivers/lirc_parallel/Makefile.in
45 echo "Disabling build of drivers/lirc_i2c due to kernel 2.6.38+ incompatibility"
46 sed -i -e "s:lirc_i2c\.o::" drivers/lirc_i2c/Makefile.am
47 sed -i -e "s:lirc_i2c\.o::" drivers/lirc_i2c/Makefile.in
49 echo "Disabling build of drivers/lirc_wpc8769l due to kernel incompatibility"
50 sed -i -e "s:lirc_wpc8769l\.o::" drivers/lirc_wpc8769l/Makefile.am
51 sed -i -e "s:lirc_wpc8769l\.o::" drivers/lirc_wpc8769l/Makefile.in
53 KERNEL_VERSION=`grep ^VERSION= $WOK/linux/receipt | cut -d "=" -f2 | sed -e 's/"//g'`
54 sed -i "s/uname -r/echo $KERNEL_VERSION-slitaz64/g" configure
56 ./configure \
57 --prefix=/usr \
58 --with-x \
59 --with-driver=all \
60 --with-kerneldir=/usr/src/linux \
61 --with-moduledir=/lib/modules/$KERNEL_VERSION-slitaz/kernel/misc \
62 $CONFIGURE_ARGS &&
63 make 2>&1 | sed 's/ERROR/Error/;/lirc_dev\/Module/d' &&
64 make DESTDIR=$DESTDIR install 2>&1 | sed '/depmod:/d'
65 }
67 # Rules to gen a SliTaz package suitable for Tazpkg.
68 genpkg_rules()
69 {
70 cp -a $install/dev $fs
71 cp -a $install/lib $fs
72 }
74 # Post install/remove commands for Tazpkg.
75 post_install()
76 {
77 chroot "$1/" depmod -a ${EXTRAVERSION#_}-slitaz64
78 }
80 post_remove()
81 {
82 chroot "$1/" depmod -a ${EXTRAVERSION#_}-slitaz64
83 }