mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
39 lines
1.2 KiB
Bash
39 lines
1.2 KiB
Bash
# Maintainer: Thomas Bächler <thomas@archlinux.org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - disable distcc - configure checks for clang first
|
|
|
|
pkgname=v4l-utils
|
|
pkgver=1.28.1
|
|
pkgrel=1
|
|
pkgdesc="Userspace tools and conversion library for Video 4 Linux"
|
|
arch=('x86_64')
|
|
url="https://linuxtv.org/"
|
|
provides=("libv4l=$pkgver")
|
|
replaces=('libv4l')
|
|
conflicts=('libv4l')
|
|
backup=(etc/rc_maps.cfg)
|
|
license=('LGPL')
|
|
options=('!distcc')
|
|
depends=('hicolor-icon-theme' 'gcc-libs' 'libjpeg-turbo' 'systemd-libs' 'json-c')
|
|
makedepends=('qt5-base' 'alsa-lib' 'meson' 'clang' 'doxygen' 'libbpf')
|
|
optdepends=('qt5-base: for qv4l2 and qvidcap' 'alsa-lib: for qv4l2' 'libbpf: for ir-keytable')
|
|
source=(https://linuxtv.org/downloads/v4l-utils/${pkgname}-${pkgver}.tar.xz{,.asc})
|
|
sha256sums=('0fa075ce59b6618847af6ea191b6155565ccaa44de0504581ddfed795a328a82'
|
|
'SKIP')
|
|
validpgpkeys=('05D0169C26E41593418129DF199A64FADFB500FF') # Gregor Jasny <gjasny@googlemail.com>
|
|
|
|
prepare() {
|
|
# HACK: inform upstream to make this configurable
|
|
cd "${pkgname}-${pkgver}"
|
|
sed -i 's/sbin/bin/' utils/v4l2-dbg/meson.build
|
|
}
|
|
|
|
build() {
|
|
arch-meson -Dgconv=disabled "${pkgname}-${pkgver}" build
|
|
meson compile -C build
|
|
}
|
|
|
|
package() {
|
|
meson install -C build --destdir "$pkgdir"
|
|
}
|