blob: a4f34286e95cb442b949ba5e0aebb29053592df8 (
plain)
1 # Description: Userspace tools and conversion library for Video 4 Linux
2 # URL: https://linuxtv.org/
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: libjpeg-turbo
5
6 name=v4l-utils
7 version=1.20.0
8 release=1
9 source=(https://linuxtv.org/downloads/v4l-utils/$name-$version.tar.bz2)
10
11 build() {
12 cd $name-$version
13 ./configure --prefix=/usr \
14 --disable-nls
15 make
16 MAKEFLAGS="-j1" make install DESTDIR=$PKG
17 rm $PKG/usr/bin/ivtv-ctl
18 }
|