new package: add package 'v4l-utils' (initial)

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2011-01-07 16:51:13 +01:00
parent da04744561
commit 231fb9fb06
4 changed files with 38 additions and 1 deletions

View File

@ -5,7 +5,7 @@ PKG_ARCH="any"
PKG_LICENSE="GPL"
PKG_SITE="http://www.openelec.tv"
PKG_URL=""
PKG_DEPENDS="irserver eventlircd"
PKG_DEPENDS="irserver eventlircd v4l-utils"
PKG_BUILD_DEPENDS="toolchain"
PKG_PRIORITY="optional"
PKG_SECTION="system/remote"

View File

@ -0,0 +1,8 @@
#!/bin/sh
. config/options $1
cd $PKG_BUILD/utils/keytable
# make KERNEL_DIR=$(kernel_path) sync-with-kernel
make

View File

@ -0,0 +1,13 @@
#!/bin/sh
. config/options $1
mkdir -p $INSTALL/usr/bin
cp $PKG_BUILD/utils/keytable/ir-keytable $INSTALL/usr/bin
mkdir -p $INSTALL/lib/udev/rules.d
cp $PKG_BUILD/utils/keytable/*.rules $INSTALL/lib/udev/rules.d
mkdir -p $INSTALL/etc
# cp $PKG_BUILD/utils/keytable/rc_maps.cfg $INSTALL/etc
cp -R $PKG_BUILD/utils/keytable/rc_keymaps $INSTALL/etc

View File

@ -0,0 +1,16 @@
PKG_NAME="v4l-utils"
PKG_VERSION="20110107"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="GPL"
PKG_SITE="http://linuxtv.org/"
PKG_URL="$OPENELEC_SRC/$PKG_NAME-$PKG_VERSION.tar.bz2"
PKG_DEPENDS=""
PKG_BUILD_DEPENDS="toolchain"
PKG_PRIORITY="optional"
PKG_SECTION="system"
PKG_SHORTDESC="v4l-utils: Linux V4L2 and DVB API utilities and v4l libraries (libv4l)."
PKG_LONGDESC="Linux V4L2 and DVB API utilities and v4l libraries (libv4l)."
PKG_IS_ADDON="no"
PKG_AUTORECONF="no"