mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 17:57:13 +08:00
44 lines
1.4 KiB
Bash
44 lines
1.4 KiB
Bash
# maintainer almack@chakraos.org
|
|
|
|
pkgname=lirc
|
|
_pkgver=0.9.3a
|
|
[[ $_pkgver =~ [a-z]$ ]] && pkgver="${_pkgver:0:-1}.${_pkgver: -1}" || pkgver="$_pkgver"
|
|
pkgrel=2
|
|
pkgdesc="Linux Infrared Remote Control utils"
|
|
arch=('x86_64')
|
|
url="http://www.lirc.org/"
|
|
license=('GPL')
|
|
depends=('alsa-lib' 'libx11' 'libftdi' 'libirman')
|
|
makedepends=('help2man' 'python3' 'libxml2' 'python3-yaml' 'doxygen' 'man2html')
|
|
optdepends=('python3: for lirc-setup, irdb-get and pronto2lirc')
|
|
provides=('lirc-utils')
|
|
conflicts=('lirc-utils')
|
|
replaces=('lirc-utils' 'lirc+pctv')
|
|
backup=('etc/lirc/lirc_options.conf' 'etc/lirc/lircd.conf' 'etc/lirc/lircmd.conf')
|
|
install=lirc.install
|
|
source=("http://prdownloads.sourceforge.net/${pkgname}/${pkgname}-${_pkgver}.tar.bz2"
|
|
lirc.logrotate
|
|
lirc.tmpfiles)
|
|
md5sums=('f9ed5dd0684a52c7cd98672e71e81b05'
|
|
'3deb02604b37811d41816e9b4385fcc3'
|
|
'febf25c154a7d36f01159e84f26c2d9a')
|
|
|
|
build() {
|
|
cd "${srcdir}/lirc-${_pkgver}"
|
|
|
|
./configure --prefix=/usr --sbindir=/usr/bin --sysconfdir=/etc --localstatedir=/var \
|
|
--with-transmitter --enable-sandboxed
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/lirc-${_pkgver}"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
install -Dm644 "${srcdir}"/lirc.tmpfiles "${pkgdir}"/usr/lib/tmpfiles.d/lirc.conf
|
|
install -Dm644 "${srcdir}"/lirc.logrotate "${pkgdir}"/etc/logrotate.d/lirc
|
|
|
|
rmdir "${pkgdir}"/var/{run/lirc/,run/,}
|
|
}
|