mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 15:04:36 +08:00
34 lines
861 B
Bash
34 lines
861 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=v4l-utils
|
|
pkgver=0.9.5
|
|
pkgrel=1
|
|
pkgdesc="Userspace tools and conversion library for Video 4 Linux"
|
|
arch=('i686' 'x86_64')
|
|
url="http://freshmeat.net/projects/libv4l"
|
|
provides=("libv4l=$pkgver")
|
|
replaces=('libv4l')
|
|
conflicts=('libv4l')
|
|
license=('LGPL')
|
|
makedepends=('qt')
|
|
optdepends=('qt')
|
|
depends=('glibc' 'gcc-libs' 'sysfsutils' 'libjpeg-turbo')
|
|
source=(http://linuxtv.org/downloads/v4l-utils/${pkgname}-${pkgver}.tar.bz2)
|
|
sha256sums=('6c9f1be981d5763069e0969ebe426c39da5a7d738865367e390e3b486f1b502c')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
./configure --prefix=/usr --sysconfdir=/etc
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
MAKEFLAGS="-j1" make install DESTDIR="${pkgdir}/"
|
|
rm "${pkgdir}/usr/bin/ivtv-ctl"
|
|
}
|