mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
91 lines
3.1 KiB
Bash
91 lines
3.1 KiB
Bash
# $Id: PKGBUILD 133620 2011-07-30 06:46:23Z ibiru $
|
|
# Maintainer: Paul Mattal <paul@archlinux.org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - removed dependencies to the kernel, thus removed drivers not already in the kernel
|
|
# - complain if you want this changed back
|
|
|
|
pkgbase=lirc
|
|
pkgname=('lirc' 'lirc-utils')
|
|
pkgver=0.9.0
|
|
pkgrel=58
|
|
epoch=1
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.lirc.org/"
|
|
license=('GPL')
|
|
makedepends=('help2man' 'alsa-lib' 'libx11' 'libftdi' 'libirman' 'python2')
|
|
options=('!makeflags' '!strip')
|
|
source=(http://prdownloads.sourceforge.net/${pkgbase}/${pkgbase}-${pkgver}.tar.bz2
|
|
lirc_wpc8769l.patch
|
|
lircd-handle-large-config.patch
|
|
lirc_atiusb-kfifo.patch
|
|
kernel-2.6.39.patch
|
|
lirc.logrotate
|
|
lirc.service lircm.service irexec.service
|
|
lirc.tmpfiles
|
|
)
|
|
md5sums=('b232aef26f23fe33ea8305d276637086'
|
|
'1cce37e18e3f6f46044abab29016d18f'
|
|
'b70cc9640505205446ec47b7d4779f38'
|
|
'1f8b104a2365d9f93404b143f499059b'
|
|
'087a7d102e1c96bf1179f38db2b0b237'
|
|
'3deb02604b37811d41816e9b4385fcc3'
|
|
'1c7ceace42da44f41e5a42b4dd3b3d76'
|
|
'121283a6de274e52ed86522aecd0f6e5'
|
|
'07131d117fcfe9dcd50c453c3a5e9531'
|
|
'febf25c154a7d36f01159e84f26c2d9a')
|
|
|
|
build() {
|
|
cd "${srcdir}/lirc-${pkgver}"
|
|
patch -Np1 -i "${srcdir}/lirc_wpc8769l.patch"
|
|
patch -Np1 -i "${srcdir}/lircd-handle-large-config.patch"
|
|
patch -Np1 -i "${srcdir}/lirc_atiusb-kfifo.patch"
|
|
patch -Np1 -i "${srcdir}/kernel-2.6.39.patch"
|
|
|
|
sed -i '/AC_PATH_XTRA/d' configure.ac
|
|
sed -i 's/AM_CONFIG_HEADER/AC_CONFIG_HEADER/' configure.ac
|
|
sed -e 's/@X_CFLAGS@//g' \
|
|
-e 's/@X_LIBS@//g' \
|
|
-e 's/@X_PRE_LIBS@//g' \
|
|
-e 's/@X_EXTRA_LIBS@//g' -i Makefile.am tools/Makefile.am
|
|
# fix for new automake #33497
|
|
sed -i 's/AM_CONFIG_HEADER/AC_CONFIG_HEADER/' configure.ac
|
|
libtoolize
|
|
autoreconf
|
|
|
|
PYTHON=python2 ./configure --enable-sandboxed --prefix=/usr \
|
|
--with-driver=userspace --sbindir=/usr/bin --with-transmitter
|
|
|
|
make
|
|
}
|
|
|
|
package_lirc() {
|
|
pkgdesc="Linux Infrared Remote Control kernel modules for stock arch kernel"
|
|
depends=('lirc-utils')
|
|
replaces=('lirc+pctv')
|
|
|
|
cd "${srcdir}/lirc-${pkgver}/drivers"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|
|
|
|
package_lirc-utils() {
|
|
pkgdesc="Linux Infrared Remote Control utils"
|
|
depends=('alsa-lib' 'libx11' 'libftdi' 'libirman')
|
|
optdepends=('python2: pronto2lirc utility')
|
|
options=('strip' '!libtool')
|
|
install=lirc-utils.install
|
|
|
|
cd "${srcdir}/lirc-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
install -D -m644 "${srcdir}"/lirc.service "${pkgdir}"/usr/lib/systemd/system/lirc.service
|
|
install -D -m644 "${srcdir}"/lircm.service "${pkgdir}"/usr/lib/systemd/system/lircm.service
|
|
install -D -m644 "${srcdir}"/irexec.service "${pkgdir}"/usr/lib/systemd/system/irexec.service
|
|
install -D -m644 "${srcdir}"/lirc.tmpfiles "${pkgdir}"/usr/lib/tmpfiles.d/lirc.conf
|
|
cp -rp remotes "${pkgdir}/usr/share/lirc"
|
|
chmod -R go-w "${pkgdir}/usr/share/lirc/"
|
|
|
|
# install the logrotate config
|
|
install -Dm644 "${srcdir}/lirc.logrotate" "${pkgdir}/etc/logrotate.d/lirc"
|
|
|
|
install -d "${pkgdir}/etc/lirc"
|
|
}
|