From 71772db0b9abf4e45a207540847f71b961649d71 Mon Sep 17 00:00:00 2001 From: Leonardo Arena Date: Fri, 11 Feb 2011 10:09:32 +0000 Subject: testing/v4l-utils: move to main --- main/v4l-utils/APKBUILD | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 main/v4l-utils/APKBUILD (limited to 'main/v4l-utils') diff --git a/main/v4l-utils/APKBUILD b/main/v4l-utils/APKBUILD new file mode 100644 index 0000000000..527824e449 --- /dev/null +++ b/main/v4l-utils/APKBUILD @@ -0,0 +1,40 @@ +# Contributor: Leonardo Arena +# Maintainer: Francesco Colista +pkgname=v4l-utils +pkgver=0.8.2 +pkgrel=0 +pkgdesc="Userspace tools and conversion library for Video 4 Linux" +url="http://freshmeat.net/projects/libv4l" +arch="all" +license="LGPL" +depends="" +depends_dev="" +makedepends="" +install="" +subpackages="$pkgname-dev" +source="http://linuxtv.org/downloads/v4l-utils/$pkgname-$pkgver.tar.bz2" + +_builddir="$srcdir"/$pkgname-$pkgver + +prepare() { + cd "$_builddir" + sed -i 's|CFLAGS :=|CFLAGS ?=|' Make.rules + # TODO: make a proper patch insted of this hugly hack + # uclibc does not have argp.h + # http://www.spinics.net/lists/linux-media/msg28619.html + rm -rf utils/decode_tm6000 utils/keytable + sed -i 's/decode_tm6000 //g' utils/Makefile + sed -i 's/keytable //g' utils/Makefile +} + +build() { + cd "$_builddir" + make PREFIX="/usr" || return 1 +} + +package() { + cd "$_builddir" + make PREFIX="/usr" DESTDIR="$pkgdir" install || return 1 +} + +md5sums="00c11e15a9421d13d0c10138abe435c6 v4l-utils-0.8.2.tar.bz2" -- cgit v1.2.3